feat(lowmem): add swap and trusted users
This commit is contained in:
parent
60689d0f29
commit
85ac8cddd0
25
global/lowmem/default.nix
Normal file
25
global/lowmem/default.nix
Normal 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;
|
||||
} ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue