This commit is contained in:
2025-01-08 21:55:17 -05:00
parent 425368dcca
commit 60a3684880
24 changed files with 38387 additions and 13 deletions

View File

@@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "thunderbolt" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "thunderbolt" "usbhid" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
@@ -18,8 +18,24 @@
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/C496-390D";
fileSystems."/nix/store" =
{ device = "/nix/store";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/efi" =
{ device = "systemd-1";
fsType = "autofs";
};
fileSystems."/Steam" =
{ device = "/dev/disk/by-uuid/0fba3aa4-181a-4c49-bbad-f2aa70e8cbbb";
fsType = "ext4";
};
fileSystems."/efi" =
{ device = "/dev/disk/by-uuid/A4B1-EFAD";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
@@ -32,6 +48,7 @@
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp15s0u1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp8s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;