This commit is contained in:
Filippo Berto 2025-10-01 15:49:39 +02:00
parent 03ce19bbcf
commit 7c1625d365
3 changed files with 32 additions and 26 deletions

View file

@ -26,25 +26,28 @@
extraModulePackages = [ ];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/80a5d8d9-c083-43cf-b7f9-8afdbc26628e";
"/" =
{ device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539";
fsType = "btrfs";
options = [ "subvol=@root" ];
};
"/nix" = {
device = "/dev/disk/by-uuid/80a5d8d9-c083-43cf-b7f9-8afdbc26628e";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
"/home" = {
device = "/dev/disk/by-uuid/80a5d8d9-c083-43cf-b7f9-8afdbc26628e";
"/home" =
{ device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
"/boot" = {
device = "/dev/disk/by-uuid/5BD2-463F";
"/nix" =
{ device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
"/boot" =
{ device = "/dev/disk/by-uuid/2E59-DAA6";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" "noatime" ];
options = [ "fmask=0022" "dmask=0022" ];
};
};