Migration nouveau SSD

This commit is contained in:
nyanloutre 2018-06-18 20:07:12 +02:00
parent 90461aa977
commit 06baf99457
1 changed files with 7 additions and 7 deletions

View File

@ -8,15 +8,20 @@
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
]; ];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-label/nixos"; { device = "/dev/disk/by-uuid/6d3f76ec-e9ca-464a-96dd-5b2a305cb47d";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/5401-0EF1";
fsType = "vfat";
};
fileSystems."/var/lib/acme" = fileSystems."/var/lib/acme" =
{ device = "loutrepool/var/acme"; { device = "loutrepool/var/acme";
fsType = "zfs"; fsType = "zfs";
@ -107,11 +112,6 @@
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/boot" =
{ device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
fileSystems."/mnt/backup" = fileSystems."/mnt/backup" =
{ device = "backup"; { device = "backup";
fsType = "zfs"; fsType = "zfs";