all repos — nixfiles @ 6322fde2efd61bbac7c2a37c69680cf34267ca5c

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

system/settings/configuration/nix-linux.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
25
{
  config,
  pkgs,
  ...
}:
{
  imports = [
    ./nix.nix
  ];

  nix = {
    settings = {
      auto-optimise-store = true;
    };
  };

  nixpkgs.config.allowUnfree = true;

  services.angrr.enableNixGcIntegration = true;

  system.rebuild.enableNg = false;
  system.autoUpgrade = {
    enable = true;
  };
}