hosts: add tower

This commit is contained in:
Charlie Root 2025-03-02 19:35:22 +01:00
commit af1cf905eb
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
5 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
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"];
};
};
};
}