aboutsummaryrefslogtreecommitdiff
path: root/modules/services/options.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-17 13:09:50 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-17 13:11:02 -0600
commit6031356c1e048f7ff2581c18df89f159b7a592c9 (patch)
treed594c6c41a38f2d1ac5d5893cf5cd8449e9340af /modules/services/options.nix
parent1aaad835c72ee2e21513291fb3145a992ed6a77a (diff)
services config; add goaccess and start working on mopidy
Diffstat (limited to 'modules/services/options.nix')
-rw-r--r--modules/services/options.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix
index 174e604..ccc2038 100644
--- a/modules/services/options.nix
+++ b/modules/services/options.nix
@@ -70,9 +70,15 @@ in {
default_port = 8010;
};
- navidrome = selfhostOptions {
- service_name = "navidrome";
- default_port = 8070;
+ goaccess.enable = mkEnableOption "GoAccess Real-Time Analytics";
+
+ mopidy = {
+ enable = mkEnableOption "Mopidy MPD server";
+ port = mkOption {
+ description = "port to run the service on";
+ type = lib.types.port;
+ default = 6600;
+ };
};
copyparty =