nichts/nyx/hosts/icarus/fs/default.nix
2024-04-09 23:11:33 +02:00

38 lines
891 B
Nix

{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/5e652a20-9dc3-441a-9fc3-949d5263ee7a";
fsType = "btrfs";
options = ["subvol=root"];
};
"/home" = {
device = "/dev/disk/by-uuid/5e652a20-9dc3-441a-9fc3-949d5263ee7a";
fsType = "btrfs";
options = ["subvol=home"];
};
"/nix" = {
device = "/dev/disk/by-uuid/5e652a20-9dc3-441a-9fc3-949d5263ee7a";
fsType = "btrfs";
options = ["subvol=nix"];
};
"/persist" = {
device = "/dev/disk/by-uuid/5e652a20-9dc3-441a-9fc3-949d5263ee7a";
fsType = "btrfs";
options = ["subvol=persist"];
};
"/var/log" = {
device = "/dev/disk/by-uuid/5e652a20-9dc3-441a-9fc3-949d5263ee7a";
fsType = "btrfs";
options = ["subvol=log"];
};
"/boot" = {
device = "/dev/disk/by-uuid/6ABE-DA15";
fsType = "vfat";
};
};
}