diff options
Diffstat (limited to 'modules/base.nix')
-rw-r--r-- | modules/base.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/base.nix b/modules/base.nix deleted file mode 100644 index 76c8b8970..000000000 --- a/modules/base.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, pkgs, ... }: - -{ - time.timeZone = "Europe/Berlin"; - - nix.maxJobs = 8; - nix.useChroot = true; - # TODO check if both are required: - nix.chrootDirs = [ "/etc/protocols" pkgs.iana_etc.outPath ]; - - nix.trustedBinaryCaches = [ - "https://cache.nixos.org" - "http://cache.nixos.org" - "http://hydra.nixos.org" - ]; - -} |