diff options
author | tv <tv@krebsco.de> | 2016-10-20 20:54:38 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-10-20 20:54:38 +0200 |
commit | ad5f0d7819ee0c5bac10e426e21d236c075620d8 (patch) | |
tree | b8394701a29087811ccb8b133aef261e66c34872 /shared/2configs | |
parent | a215010f30eafe2c193f34b8a8c4025b2897f583 (diff) |
drop config.krebs.lib
Diffstat (limited to 'shared/2configs')
-rw-r--r-- | shared/2configs/cgit-mirror.nix | 2 | ||||
-rw-r--r-- | shared/2configs/collectd-base.nix | 2 | ||||
-rw-r--r-- | shared/2configs/default.nix | 2 | ||||
-rw-r--r-- | shared/2configs/graphite.nix | 2 | ||||
-rw-r--r-- | shared/2configs/shack-drivedroid.nix | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/shared/2configs/cgit-mirror.nix b/shared/2configs/cgit-mirror.nix index d9241a2..a3860a0 100644 --- a/shared/2configs/cgit-mirror.nix +++ b/shared/2configs/cgit-mirror.nix @@ -1,6 +1,6 @@ { config, lib, pkgs, ... }: -with config.krebs.lib; +with import <stockholm/lib>; let rules = with git; singleton { user = [ wolf-repo-sync ]; diff --git a/shared/2configs/collectd-base.nix b/shared/2configs/collectd-base.nix index 9c63dcd..fd6016d 100644 --- a/shared/2configs/collectd-base.nix +++ b/shared/2configs/collectd-base.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, ... }: # TODO: krebs.collectd.plugins -with config.krebs.lib; +with import <stockholm/lib>; let connect-time-cfg = with pkgs; writeText "collectd-connect-time.conf" '' LoadPlugin python diff --git a/shared/2configs/default.nix b/shared/2configs/default.nix index f5377db..cae2bc8 100644 --- a/shared/2configs/default.nix +++ b/shared/2configs/default.nix @@ -1,6 +1,6 @@ { config, lib, pkgs, ... }: -with config.krebs.lib; +with import <stockholm/lib>; { krebs.enable = true; krebs.tinc.retiolum.enable = true; diff --git a/shared/2configs/graphite.nix b/shared/2configs/graphite.nix index bfa2b29..8a12384 100644 --- a/shared/2configs/graphite.nix +++ b/shared/2configs/graphite.nix @@ -5,7 +5,7 @@ # TODO: krebs.graphite.minimal.enable # TODO: configure firewall -with config.krebs.lib; +with import <stockholm/lib>; { imports = [ ]; diff --git a/shared/2configs/shack-drivedroid.nix b/shared/2configs/shack-drivedroid.nix index 6133ccc..3581f9e 100644 --- a/shared/2configs/shack-drivedroid.nix +++ b/shared/2configs/shack-drivedroid.nix @@ -1,5 +1,5 @@ { pkgs, lib, config, ... }: -with config.krebs.lib; +with import <stockholm/lib>; let repodir = "/var/srv/drivedroid"; srepodir = shell.escape repodir; |