feat(lowmem): add swap and trusted users

This commit is contained in:
514fpv 2024-01-14 12:41:39 +08:00
parent 60689d0f29
commit 85ac8cddd0
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

25
global/lowmem/default.nix Normal file
View file

@ -0,0 +1,25 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.global.lowmem;
in {
options.global.lowmem = {
enable = mkEnableOption "low memory optimisations";
swapsize = mkOption {
type = with types; int;
default = 8 * 1024;
description = "automatic swap file size";
};
};
config = mkIf cfg.enable {
# enables remote nixos-rebuild
nix.settings.trusted-users = [ "koishi" ];
swapDevices = [ {
device = "/nix/persist/secret/swap";
size = cfg.swapsize;
} ];
};
}