all repos — nixfiles @ 7f73174893bc51d3c701f4a4cda515492641d270

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

system/settings/configuration/nix-linux.nix (view raw)

{
  config,
  pkgs,
  ...
}:
{
  imports = [
    ./nix.nix
  ];

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

  nixpkgs.config.allowUnfree = true;

  services.angrr.enableNixGcIntegration = true;

  system.autoUpgrade = {
    enable = true;
  };
}