diff options
author | makefu <github@syntax-fehler.de> | 2019-07-25 22:13:14 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-07-25 22:13:14 +0200 |
commit | 3189052d4deb516d49f721d5cf496818034ef9b0 (patch) | |
tree | 4a1c23069bdb208a56839bc38066012aae6b4403 /krebs/2configs/default.nix | |
parent | 91833c560a2656d39bda5f87c0c4786670e2fc1f (diff) |
krebs: cleanup default.nix
Diffstat (limited to 'krebs/2configs/default.nix')
-rw-r--r-- | krebs/2configs/default.nix | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/krebs/2configs/default.nix b/krebs/2configs/default.nix index 8771c0e1d..d7d6fbf37 100644 --- a/krebs/2configs/default.nix +++ b/krebs/2configs/default.nix @@ -14,18 +14,13 @@ with import <stockholm/lib>; ]; krebs.announce-activation.enable = true; krebs.enable = true; - krebs.tinc.retiolum.enable = true; + krebs.tinc.retiolum.enable = mkDefault true; krebs.build.user = mkDefault config.krebs.users.krebs; networking.hostName = config.krebs.build.host.name; nix.maxJobs = 1; - nix.trustedBinaryCaches = [ - "https://cache.nixos.org" - "http://cache.nixos.org" - "http://hydra.nixos.org" - ]; nix.useSandbox = true; environment.systemPackages = with pkgs; [ @@ -39,8 +34,6 @@ with import <stockholm/lib>; defaultLocale = lib.mkForce "C"; }; - - programs.ssh.startAgent = false; services.openssh = { @@ -55,18 +48,13 @@ with import <stockholm/lib>; users.mutableUsers = false; users.extraUsers.root.openssh.authorizedKeys.keys = [ - # TODO config.krebs.users.jeschli-brauerei.pubkey config.krebs.users.lass.pubkey config.krebs.users.lass-mors.pubkey config.krebs.users.makefu.pubkey - # TODO HARDER: - config.krebs.users.makefu-omo.pubkey config.krebs.users.tv.pubkey ]; - # The NixOS release to be compatible with for stateful data such as databases. system.stateVersion = "17.03"; - } |