configuration.nix/hosts/rico1/hardware/filesystem.nix

37 lines
913 B
Nix
Raw Normal View History

2024-06-25 00:23:05 +05:30
_: {
fileSystems = {
"/" = {
2024-06-25 21:51:01 +05:30
device = "/dev/disk/by-label/RICO1_ROOT";
2024-06-25 00:23:05 +05:30
fsType = "btrfs";
options = [ "subvol=@root" "compress-force=zstd" "noatime" ];
neededForBoot = true;
};
"/nix" = {
2024-06-25 21:51:01 +05:30
device = "/dev/disk/by-label/RICO1_ROOT";
2024-06-25 00:23:05 +05:30
fsType = "btrfs";
options = [ "subvol=@nix" "compress-force=zstd" "noatime" ];
neededForBoot = true;
};
"/persist" = {
2024-06-25 21:51:01 +05:30
device = "/dev/disk/by-label/RICO1_ROOT";
2024-06-25 00:23:05 +05:30
fsType = "btrfs";
options = [ "subvol=@persist" "compress-force=zstd" "noatime" ];
neededForBoot = true;
};
"/mnt/system" = {
2024-06-25 21:51:01 +05:30
device = "/dev/disk/by-label/RICO1_ROOT";
2024-06-25 00:23:05 +05:30
fsType = "btrfs";
options = [ "subvol=/" "compress-force=zstd" "noatime" ];
};
"/boot" = {
2024-06-25 21:51:01 +05:30
device = "/dev/disk/by-label/RICO1_BOOT";
2024-06-25 00:23:05 +05:30
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
};
}