hardware: format

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-08-14 10:51:16 -03:00
parent 99ded3b986
commit a4901d51e0
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -5,8 +5,7 @@
{ {
imports = imports =
[ [ (modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" ];
@ -15,16 +14,14 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ { device = "/dev/disk/by-uuid/796d5ad8-db83-4c4f-883d-2f1f4f1937de";
device = "/dev/disk/by-uuid/796d5ad8-db83-4c4f-883d-2f1f4f1937de";
fsType = "ext4"; fsType = "ext4";
}; };
boot.initrd.luks.devices."luks-94d233be-889a-46a4-9c20-b7f026980cbf".device = "/dev/disk/by-uuid/94d233be-889a-46a4-9c20-b7f026980cbf"; boot.initrd.luks.devices."luks-94d233be-889a-46a4-9c20-b7f026980cbf".device = "/dev/disk/by-uuid/94d233be-889a-46a4-9c20-b7f026980cbf";
fileSystems."/boot" = fileSystems."/boot" =
{ { device = "/dev/disk/by-uuid/CA05-302F";
device = "/dev/disk/by-uuid/CA05-302F";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };