summary refs log tree commit diff
path: root/nixos/modules/services/audio/networkaudiod.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/audio/networkaudiod.nix')
-rw-r--r--nixos/modules/services/audio/networkaudiod.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nixos/modules/services/audio/networkaudiod.nix b/nixos/modules/services/audio/networkaudiod.nix
new file mode 100644
index 00000000000..265a4e1d95d
--- /dev/null
+++ b/nixos/modules/services/audio/networkaudiod.nix
@@ -0,0 +1,19 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+  name = "networkaudiod";
+  cfg = config.services.networkaudiod;
+in {
+  options = {
+    services.networkaudiod = {
+      enable = mkEnableOption "Networkaudiod (NAA)";
+    };
+  };
+
+  config = mkIf cfg.enable {
+    systemd.packages = [ pkgs.networkaudiod ];
+    systemd.services.networkaudiod.wantedBy = [ "multi-user.target" ];
+  };
+}