From 15e1dac9b468a051b78c8748d44ec1c500f4d0df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 5 Mar 2025 21:24:32 +0100 Subject: [PATCH] Add piper and ratbagd for gunter --- hosts/gunter/default.nix | 1 + hosts/gunter/ratbagd.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 hosts/gunter/ratbagd.nix 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 ]; +}