aboutsummaryrefslogtreecommitdiff
path: root/modules/private/environment.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/private/environment.nix')
-rw-r--r--modules/private/environment.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/private/environment.nix b/modules/private/environment.nix
index 77e9c8d..29ea173 100644
--- a/modules/private/environment.nix
+++ b/modules/private/environment.nix
@@ -917,6 +917,16 @@ in
917 }; 917 };
918 }; 918 };
919 }; 919 };
920 syden_peertube = mkOption {
921 description = "Peertube Syden configuration";
922 type = submodule {
923 options = {
924 listenPort = mkOption { type = port; description = "Port to listen to"; };
925 postgresql = mkPsqlOptions "Peertube";
926 redis = mkRedisOptions "Peertube";
927 };
928 };
929 };
920 phpldapadmin = mkOption { 930 phpldapadmin = mkOption {
921 description = "phpLdapAdmin configuration"; 931 description = "phpLdapAdmin configuration";
922 type = submodule { 932 type = submodule {