all repos — nixfiles @ 3e054571d73ccacfec7b1d4714bfa74818b7affe

System and user configuration, managed by nix and home-manager

modules/nix.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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.script = ''
    ${config.system.build.nixos-rebuild}/bin/nixos-rebuild boot ${toString config.system.autoUpgrade.flags}
  '';
}