summary refs log tree commit diff stats
path: root/modules/nix.nix
blob: e1f1e16302bac5b995944b6179289b03f48895fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config, pkgs, ... }:

{ nix = {
    buildCores = 0;

    daemonNiceLevel = 10;
    daemonIONiceLevel = 4;

    extraOptions = ''
      auto-optimise-store = true
    '';
    gc = {
      automatic = true;
      options = "--delete-older-than 30d";
    };
  };

  system.autoUpgrade = {
    enable = true;
  };
  systemd.services.nixos-upgrade = {
    environment.NIXPKGS_ALLOW_UNFREE = "1";
    script = ''
      ${config.system.build.nixos-rebuild}/bin/nixos-rebuild boot ${toString config.system.autoUpgrade.flags}
    '';
  };
}