made hosts/main.nix so that i can also use it on the hpm-laptop.nix...

This commit is contained in:
Sebastian Moser
2023-10-31 13:57:21 +00:00
parent fef4f8e219
commit 30fe098ee9
5 changed files with 82 additions and 72 deletions

View File

@@ -23,6 +23,13 @@
fsType = "vfat";
};
fileSystems."/tmp" = {
fsType = "tmpfs";
device = "tmpfs";
options = [ "nosuid" "nodev" "relatime" "size=14G" ];
};
swapDevices = [
{ device = "/dev/disk/by-uuid/418bf0d8-e548-45d5-802a-53de72707ebc"; }
];