blob: de1281aec30aa862db1f9e8fbaca43de89952b8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{ inputs, config, lib, ... }:
{
options.teh-nix.nix = with lib; {
enable = mkEnableOption "Use the TehNix nix settings";
};
config = lib.mkIf config.teh-nix.nix.enable {
nix.nixPath = [ "/etc/nix/path" ];
nix.registry.nixpkgs.flake = inputs.nixpkgs;
environment.etc."nix/path/nixpkgs".source = inputs.nixpkgs;
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
trusted-users = [ "boss" ];
substituters = [
"https://cache.nixos.org"
];
# trusted-public-keys = [
# "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
# ];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than +7";
};
optimise.automatic = true;
};
};
}
|