nixos-config/modules/profiles/server.nix
2022-01-07 23:34:38 -05:00

14 lines
345 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
config = mkIf (config.sconfig.profile == "server") {
services.logind.lidSwitch = "ignore";
services.openssh.enable = true;
documentation.nixos.enable = false;
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
randomizedDelaySec = "55min";
};
};
}