diff --git a/hosts/gunter/default.nix b/hosts/gunter/default.nix index a789ee7..7dc5d4b 100644 --- a/hosts/gunter/default.nix +++ b/hosts/gunter/default.nix @@ -13,6 +13,7 @@ ./ollama.nix ./streamdeck.nix ./alvr.nix + ./ratbagd.nix ../../system ../../home/gunter.nix ]; diff --git a/hosts/gunter/ratbagd.nix b/hosts/gunter/ratbagd.nix new file mode 100644 index 0000000..be411f6 --- /dev/null +++ b/hosts/gunter/ratbagd.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: +{ + services.ratbagd.enable = true; + environment.systemPackages = with pkgs; [ piper ]; +}