This commit is contained in:
fleaz 2022-02-23 23:42:42 +01:00
parent e6c5e39542
commit d4f1d7543c
8 changed files with 133 additions and 130 deletions

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
@ -14,7 +15,8 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/60e06bf9-f4c4-4555-879b-23ade6599704"; {
device = "/dev/disk/by-uuid/60e06bf9-f4c4-4555-879b-23ade6599704";
fsType = "ext4"; fsType = "ext4";
}; };
@ -32,7 +34,8 @@
[ "${automount_opts},credentials=/etc/nixos/smb-secrets" ]; [ "${automount_opts},credentials=/etc/nixos/smb-secrets" ];
}; };
fileSystems."/boot/efi" = fileSystems."/boot/efi" =
{ device = "/dev/disk/by-uuid/274B-0F7C"; {
device = "/dev/disk/by-uuid/274B-0F7C";
fsType = "vfat"; fsType = "vfat";
}; };