all repos — nixfiles @ 759b3c467cf5eeeaa3247e76dc5695f4973137f4

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

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

{
  ...
}:
{
  imports = [
    ./nix.nix
  ];

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

  nixpkgs.config.allowUnfree = true;

  services.angrr.enableNixGcIntegration = true;

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