Update default.nix
This commit is contained in:
parent
87d9cc2513
commit
e90fb6254f
1 changed files with 5 additions and 5 deletions
|
@ -12,7 +12,7 @@
|
||||||
boot = {
|
boot = {
|
||||||
initrd = {
|
initrd = {
|
||||||
availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ];
|
availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ];
|
||||||
luks.devices.root.device = "/dev/disk/by-uuid/a553c11a-f6f4-4d67-a2d1-ede2615bce3d";
|
luks.devices.root.device = "/dev/disk/by-uuid/747ae319-f189-44f5-9737-a42672e2c02d";
|
||||||
};
|
};
|
||||||
|
|
||||||
kernelModules = [ "kvm-intel" ];
|
kernelModules = [ "kvm-intel" ];
|
||||||
|
@ -28,21 +28,21 @@
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-uuid/5F53-367D";
|
device = "/dev/disk/by-uuid/4672-C1A9";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d";
|
device = "/dev/disk/by-uuid/04255623-c061-4cf0-89fa-b3d8eb239d59";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=root" "compress=zstd" "noatime" ];
|
options = [ "subvol=root" "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d";
|
device = "/dev/disk/by-uuid/04255623-c061-4cf0-89fa-b3d8eb239d59";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nix" "compress=zstd" "noatime" ];
|
options = [ "subvol=nix" "compress=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
"/swap" = {
|
"/swap" = {
|
||||||
device = "/dev/disk/by-uuid/17cf5e07-0f18-4d16-b5bd-330588b82d3d";
|
device = "/dev/disk/by-uuid/04255623-c061-4cf0-89fa-b3d8eb239d59";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=swap" "noatime" ];
|
options = [ "subvol=swap" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue