aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/core/nix.nix
blob: 3c798ae51420d29ebd7a4e11cb0ef30025dbdb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
{ inputs, lib, ... }: 
{
  nix = {
    settings = {
      auto-optimise-store = lib.mkDefault true;
      experimental-features = [ "nix-command" "flakes" ];
      trusted-users = [ "root" "@wheel" ];
      warn-dirty = false;
    };
  };
}