Increased swap space to match RAM size

This commit is contained in:
coolneng 2020-07-08 00:25:11 +02:00
parent d7f664f45a
commit f1261099bc
Signed by: coolneng
GPG Key ID: 9893DA236405AF57

View File

@ -23,13 +23,13 @@
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/tmp" = fileSystems."/home" =
{ device = "syscea/ephemeral/tmp"; { device = "syscea/stateful/home";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/home" = fileSystems."/tmp" =
{ device = "syscea/stateful/home"; { device = "syscea/ephemeral/tmp";
fsType = "zfs"; fsType = "zfs";
}; };
@ -38,6 +38,11 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/media" =
{ device = "/nix/store/9hxfq3jh32j6d81d6n5y5dc2wqdkh4wy-auto";
fsType = "autofs";
};
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/29d26e6a-b421-41c3-9826-76e4da00e3bb"; } [ { device = "/dev/disk/by-uuid/29d26e6a-b421-41c3-9826-76e4da00e3bb"; }
]; ];