From 433a9ffcbddda74b0449eba251246a60221ae7cd Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Fri, 29 May 2020 21:45:44 +0100 Subject: better mirror upstream nixpkgs layout --- modules/services/snapclient.nix | 44 ----------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 modules/services/snapclient.nix (limited to 'modules/services/snapclient.nix') diff --git a/modules/services/snapclient.nix b/modules/services/snapclient.nix deleted file mode 100644 index 9f93131..0000000 --- a/modules/services/snapclient.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ config, lib, pkgs, ... }: -with lib; - -let - - cfg = config.eth.services.snapclient; - -in { - - options.eth.services.snapclient = { - - enable = mkEnableOption "Whether to enable snapclient."; - - hostID = mkOption { - type = types.str; - default = config.networking.hostName; - description = "The name to give to the snapserver."; - example = "Living Room"; - }; - }; - - config = mkIf cfg.enable { - - systemd.services.snapclient = { - enable = true; - description = "Snapcast client"; - wants = [ "network.target" "sound.target" ]; - after = [ "network.target" "sound.target" ]; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - DynamicUser = "yes"; - Group = "audio"; - ExecStart = "${pkgs.snapcast}/bin/snapclient --hostID ${escapeShellArg cfg.hostID}"; - NoNewPrivileges = true; - ProtectHome = true; - ProtectKernelTunables = true; - ProtectControlGroups = true; - ProtectKernelModules = true; - RestrictAddressFamilies = "AF_INET AF_INET6 AF_UNIX"; - RestrictNamespaces = true; - }; - }; - }; -} -- cgit v1.2.3