hosts: add tower
This commit is contained in:
parent
3f1077be3c
commit
af1cf905eb
5 changed files with 106 additions and 0 deletions
16
hosts/tower/filesystem/default.nix
Normal file
16
hosts/tower/filesystem/default.nix
Normal 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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue