nix: move tmp-tmpfs into extra modules

This commit is contained in:
Primrose 2024-11-14 20:08:36 +01:00
parent 73a261f448
commit 3728c76d12
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 1 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
fileSystems."/tmp" = {
fsType = "tmpfs";
options = [
"defaults"
"size=4G"
];
};
}