Add piper and ratbagd for gunter
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m45s
Periodic flake update / flake-update (push) Successful in 1m20s

This commit is contained in:
Torjus Håkestad 2025-03-05 21:24:32 +01:00
parent a4af92cd27
commit 15e1dac9b4
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
2 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,7 @@
./ollama.nix
./streamdeck.nix
./alvr.nix
./ratbagd.nix
../../system
../../home/gunter.nix
];

5
hosts/gunter/ratbagd.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
services.ratbagd.enable = true;
environment.systemPackages = with pkgs; [ piper ];
}