flake/common/nix-settings.nix
2024-10-26 18:16:39 +03:00

18 lines
No EOL
393 B
Nix

{ pkgs, lib, config, ... }: {
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# enable nix flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# disable the database error TODO add nix-index search
programs.command-not-found.enable = false;
}