From 85ac8cddd0726bd7bf727efd2f860112553abf44 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Sun, 14 Jan 2024 12:41:39 +0800 Subject: [PATCH] feat(lowmem): add swap and trusted users --- global/lowmem/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 global/lowmem/default.nix diff --git a/global/lowmem/default.nix b/global/lowmem/default.nix new file mode 100644 index 00000000..8a3ca395 --- /dev/null +++ b/global/lowmem/default.nix @@ -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; + } ]; + }; +}