diff --git a/variables-module.nix b/variables-module.nix index 0a41a39..4e31e76 100644 --- a/variables-module.nix +++ b/variables-module.nix @@ -99,24 +99,40 @@ in default = false; type = types.nullOr types.bool; }; + location = mkOption { + default = "sda1"; + type = types.nullOr types.str; + }; }; gitea = { enable = mkOption { default = false; type = types.nullOr types.bool; }; + location = mkOption { + default = "sda1"; + type = types.nullOr types.str; + }; }; nextcloud = { enable = mkOption { default = true; type = types.nullOr types.bool; }; + location = mkOption { + default = "sda1"; + type = types.nullOr types.str; + }; }; pleroma = { enable = mkOption { default = false; type = types.nullOr types.bool; }; + location = mkOption { + default = "sda1"; + type = types.nullOr types.str; + }; }; jitsi = { enable = mkOption { @@ -173,5 +189,9 @@ in type = types.nullOr (types.listOf (types.attrsOf types.anything)); default = [ ]; }; + useBinds = mkOption { + type = types.nullOr types.bool; + default = false; + }; }; }