This commit is contained in:
mjallen18
2025-09-01 18:20:34 -05:00
parent 93c698c2de
commit 6e1f6c23fe
5 changed files with 90 additions and 86 deletions

View File

@@ -52,10 +52,6 @@ in
after = [ "gpg-agent.service" ];
};
# Enable gnome keyring for password storage
security.pam.services.login.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
# Configure gpg-agent
programs.gnupg.agent = {
enable = true;

View File

@@ -2,6 +2,7 @@
config,
lib,
namespace,
pkgs,
...
}:
with lib;
@@ -22,10 +23,13 @@ in
uri = "tcp://0.0.0.0:10300";
};
piper.servers.hass-piper = {
enable = true;
voice = "en-us-ryan-high";
uri = "tcp://0.0.0.0:10200";
piper = {
package = pkgs.stable.wyoming-piper;
servers.hass-piper = {
enable = true;
voice = "en-us-ryan-high";
uri = "tcp://0.0.0.0:10200";
};
};
};
};