remove servers option

This commit is contained in:
Aaron Bieber 2024-08-23 09:05:33 -06:00
parent 8744f3a6c8
commit b6ac2665c9
No known key found for this signature in database

View File

@ -13,13 +13,8 @@ in
services.tsns = {
package = mkPackageOption pkgs "tsns" { };
servers = mkOption {
description = "Configuration of multiple `tsns` instalces.";
default = { };
type = with types; attrsOf (submodule ({ name, ... }: {
options = {
enable = lib.mkEnableOption "Enable tsns for ${name}";
user = mkOption {
type = with types; oneOf [ str int ];
default = name;
@ -42,9 +37,6 @@ in
description = "Path tsns home directory";
};
};
}));
};
};
};
config = mkIf (enabledServers != { }) {