aboutsummaryrefslogtreecommitdiff
path: root/modules/private/environment.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-06-16 15:23:20 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-06-16 16:16:00 +0200
commita97118c489a59d723538292214efaa10dfcb96df (patch)
tree853ec20d2af94dc8d3325fa3b781dd535cd72c86 /modules/private/environment.nix
parentb1b8a5623d22a7ee4301afe4e7b9d368ef7ded8f (diff)
downloadNix-a97118c489a59d723538292214efaa10dfcb96df.tar.gz
Nix-a97118c489a59d723538292214efaa10dfcb96df.tar.zst
Nix-a97118c489a59d723538292214efaa10dfcb96df.zip
Add status engine website
Diffstat (limited to 'modules/private/environment.nix')
-rw-r--r--modules/private/environment.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/private/environment.nix b/modules/private/environment.nix
index 82e3981..3a805c6 100644
--- a/modules/private/environment.nix
+++ b/modules/private/environment.nix
@@ -1020,6 +1020,15 @@ in
1020 }; 1020 };
1021 }; 1021 };
1022 }; 1022 };
1023 status_engine = mkOption {
1024 description = "Status Engine configuration";
1025 type = submodule {
1026 options = {
1027 mysql = mkMysqlOptions "StatusEngine" {};
1028 ldap = mkLdapOptions "StatusEngine" {};
1029 };
1030 };
1031 };
1023 task = mkOption { 1032 task = mkOption {
1024 description = "Taskwarrior configuration"; 1033 description = "Taskwarrior configuration";
1025 type = submodule { 1034 type = submodule {