My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

add snapcast module

+10 -1
-1
hosts/hades/default.nix
··· 10 10 "cachix" 11 11 "localai" 12 12 "zsa-kb" 13 - 14 13 ]; 15 14 16 15 primaryDisplay = config.unify.hosts.hades.displays.DP-3;
+10
modules/services/snapcast.nix
··· 1 + { 2 + unify.modules.workstation.home = 3 + { pkgs, lib, ... }: 4 + { 5 + systemd.user.services.snapcast-client = { 6 + Install.WantedBy = [ "graphical-session.target" ]; 7 + Service.ExecStart = "${lib.getExe' pkgs.snapcast "snapclient"} --player pulse"; 8 + }; 9 + }; 10 + }