This commit is contained in:
2026-04-07 13:28:26 -03:00
parent d8c09047f5
commit 3ac4eb5503
10 changed files with 99 additions and 491 deletions
+3 -3
View File
@@ -8,19 +8,19 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/a1eb89b4-3009-4524-af2b-24aeab2226b8";
{ device = "/dev/disk/by-uuid/adaa7917-2996-4cf5-9664-4832b1fc200b";
fsType = "btrfs";
options = [ "subvol=@" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A038-AF6E";
{ device = "/dev/disk/by-uuid/C5F0-5261";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};