stockholm/modules/base.nix

18 lines
332 B
Nix
Raw Normal View History

2015-03-05 12:01:05 +00:00
{ 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"
];
}