diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-31 12:52:58 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-31 12:52:58 -0600 |
| commit | 09b0c69504e9b51bcb17af58927f3058de635d39 (patch) | |
| tree | a4340a406f6fd896a4362f40f1d21646091069fa /modules/services/options.nix | |
| parent | c9a1d2da80bca0a85e8c18f6d2db71c4d1127eda (diff) | |
copyparty
Diffstat (limited to 'modules/services/options.nix')
| -rw-r--r-- | modules/services/options.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix index 880206f..ef9f57f 100644 --- a/modules/services/options.nix +++ b/modules/services/options.nix @@ -4,7 +4,7 @@ ... }: let inherit (lib) mkOption mkEnableOption; - inherit ((my-lib {inherit lib;}).netTypes) ipAddr; + inherit (my-lib.netTypes {inherit lib;}) ipAddr; selfhostOptions = { service_name, @@ -77,6 +77,11 @@ in { }; }; + copyparty = selfhostOptions { + service_name = "copyparty"; + default_port = 8099; + }; + headscale = selfhostOptions { service_name = "headscale"; default_port = 8080; |
