This commit is contained in:
Miguel Palhas
2024-09-29 10:31:52 +01:00
commit 327b575dc5
16 changed files with 960 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ inputs, lib, nixpkgs, ... }: {
nix = {
settings = {
trusted-users = [ "'root" "@wheel" ];
auto-optimise-store = lib.mkDefault true;
experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
};
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
};
nixpkgs.config.allowUnfree = true;
}