nichts/hosts/tower/filesystem/default.nix

17 lines
342 B
Nix
Raw Normal View History

2025-03-02 19:35:22 +01:00
{
config = {
fileSystems = {
"/boot" = {
device = "/dev/disk/by-uuid/3480-C94B";
fsType = "vfat";
};
# root on tmpfs
"/" = {
device = "/dev/disk/by-uuid/3dde50ca-440d-4d46-974e-efc623e53703";
fsType = "btrfs";
options = ["compress=zstd" "noatime"];
};
};
};
}