diff options
author | tv <tv@shackspace.de> | 2015-11-07 09:48:06 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-11-07 09:48:06 +0100 |
commit | 8ad05d0f40debdb2dc41aef2db24f77f539f4328 (patch) | |
tree | 50c71257fa56bd1d4a67c3ef23cc10620fd387ff /default.nix | |
parent | d590cf26cd8fa33ed4140bef7a5d689c76455625 (diff) | |
parent | bae469d2a64165a42d93cdb31e231fa75e9813a5 (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 472d7597d..ac748c286 100644 --- a/default.nix +++ b/default.nix @@ -32,7 +32,10 @@ let stockholm = { upath = lib.nspath current-user-name; base-module = { config, ... }: { - imports = map (f: f "3modules") [ kpath upath ]; + imports = builtins.filter builtins.pathExists (lib.concatLists [ + (map (f: f "2configs") [ upath ]) + (map (f: f "3modules") [ kpath upath ]) + ]); krebs.current.enable = true; krebs.current.host = config.krebs.hosts.${current-host-name}; |