diff options
author | Ben Sima <ben@bsima.me> | 2022-07-27 14:57:55 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-27 14:57:55 -0400 |
commit | a988b5cc9d75ad23a23b0b34b35f00bdacc9a2e2 (patch) | |
tree | f32456fb34f4fc381f1352082dddf5bfcb3a0a58 /Biz/OsBase.nix | |
parent | 2d753c6120ccf47734fba8fb1588408df1fdf5c0 (diff) |
Upgrade nixpkgs
Diffstat (limited to 'Biz/OsBase.nix')
-rw-r--r-- | Biz/OsBase.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Biz/OsBase.nix b/Biz/OsBase.nix index f1caee3..ba67fb5 100644 --- a/Biz/OsBase.nix +++ b/Biz/OsBase.nix @@ -4,14 +4,14 @@ let in { boot.cleanTmpDir = true; networking.firewall.allowPing = true; - nix.binaryCaches = [ "https://cache.nixos.org" ]; + nix.settings.substituters = [ "https://cache.nixos.org" ]; nix.gc.automatic = true; nix.gc.dates = "Sunday 02:15"; nix.optimise.automatic = true; nix.optimise.dates = [ "Sunday 02:30" ]; programs.mosh.enable = true; programs.mosh.withUtempter = true; - security.acme.email = "ben@bsima.me"; + security.acme.defaults.email = "ben@bsima.me"; security.acme.acceptTerms = true; security.sudo.wheelNeedsPassword = false; services.clamav.daemon.enable = true; # security |