| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # Do not modify this file! It was generated by ‘nixos-generate-config’
- # and may be overwritten by future invocations. Please make changes
- # to /etc/nixos/configuration.nix instead.
- { config, lib, pkgs, modulesPath, ... }:
- {
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/40f01d77-f742-494a-bd9d-05c691619578";
- fsType = "btrfs";
- options = [ "subvol=@" ];
- };
- fileSystems."/home" =
- { device = "/dev/disk/by-uuid/40f01d77-f742-494a-bd9d-05c691619578";
- fsType = "btrfs";
- options = [ "subvol=@home" ];
- };
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/DC2D-30C4";
- fsType = "vfat";
- options = [ "fmask=0077" "dmask=0077" ];
- };
- fileSystems."/hdd" =
- { device = "/dev/disk/by-uuid/995f3a39-f893-497d-bc2a-c0cb1f4c913c";
- fsType = "ext4";
- };
- fileSystems."/nix" =
- { device = "/dev/disk/by-uuid/08162bfa-f48f-4b7c-8bf0-2a38e92810de";
- fsType = "btrfs";
- };
- fileSystems."/nvme" =
- { device = "/dev/disk/by-uuid/aa535a01-d005-4fd2-9e95-3787ce33b6f3";
- fsType = "btrfs";
- };
- fileSystems."/storage" =
- { device = "/dev/disk/by-uuid/6f208e9e-ec40-4107-803d-d8f381a31e40";
- fsType = "btrfs";
- };
- swapDevices = [ ];
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
- }
|