From 6f054d31f40d9421e0131e07058738d48929b661 Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 6 Jul 2023 20:52:33 +0200 Subject: modules: expose kartei as module --- krebs/3modules/kartei.nix | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 krebs/3modules/kartei.nix (limited to 'krebs/3modules') diff --git a/krebs/3modules/kartei.nix b/krebs/3modules/kartei.nix new file mode 100644 index 000000000..3dcb65ff6 --- /dev/null +++ b/krebs/3modules/kartei.nix @@ -0,0 +1,3 @@ +{ + imports = [ ../../kartei ]; +} -- cgit v1.2.3 From 4ed74041f7fa2d1554770eb3bb65c8774dd529eb Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 6 Jul 2023 20:57:20 +0200 Subject: modules/default: sort entries --- krebs/3modules/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'krebs/3modules') diff --git a/krebs/3modules/default.nix b/krebs/3modules/default.nix index 28ce09941..5d12ea7af 100644 --- a/krebs/3modules/default.nix +++ b/krebs/3modules/default.nix @@ -1,7 +1,6 @@ { config, lib, ... }: { imports = [ - ../../kartei ./acl.nix ./airdcpp.nix ./announce-activation.nix @@ -28,9 +27,10 @@ ./iana-etc.nix ./iptables.nix ./kapacitor.nix + ./kartei.nix ./konsens.nix - ./krebs.nix ./krebs-pages.nix + ./krebs.nix ./monit.nix ./nixpkgs.nix ./on-failure.nix @@ -45,8 +45,8 @@ ./secret.nix ./setuid.nix ./shadow.nix - ./ssh.nix ./sitemap.nix + ./ssh.nix ./ssl.nix ./sync-containers.nix ./sync-containers3.nix -- cgit v1.2.3 From 8e23a28c590c058ac233bcec94e7c06ec1e06703 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 8 Jul 2023 14:35:36 +0200 Subject: exim-smarthost: allow defining extraRouters in multiple locations --- krebs/3modules/exim-smarthost.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'krebs/3modules') diff --git a/krebs/3modules/exim-smarthost.nix b/krebs/3modules/exim-smarthost.nix index 7b3dace6a..093ae2030 100644 --- a/krebs/3modules/exim-smarthost.nix +++ b/krebs/3modules/exim-smarthost.nix @@ -40,7 +40,7 @@ let }; extraRouters = mkOption { - type = types.nullOr types.str; + type = types.nullOr types.lines; default = null; }; -- cgit v1.2.3