Skip to content

Commit

Permalink
Prepare for HA TTS endpoint on debord
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramblurr committed Feb 24, 2025
1 parent 17fc247 commit ed4a53b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/home-ops.nix
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ in
users.enable = true;
users.primaryUser.extraGroups = [
"libvirtd"
"audio"
"wheel"
"media"
];
Expand Down
31 changes: 31 additions & 0 deletions hosts/debord/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,37 @@ in
networking.firewall.logRefusedConnections = lib.mkForce true;
modules.vpn.tailscale.enable = true;
modules.vpn.tailscale.useRoutingFeatures = "both";
security.rtkit.enable = true;

networking.firewall.allowedUDPPorts = [
4214
];
networking.firewall.allowedTCPPorts = [
4214
];
environment.systemPackages = with pkgs; [
alsa-utils
pipewire
wireplumber
pulsemixer
jless
(pkgs.vlc.override {
chromecastSupport = false;
jackSupport = false;
onlyLibVLC = false;
skins2Support = false;
waylandSupport = false;
withQt5 = false;
})
];
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
jack.enable = false;
wireplumber.enable = true;
audio.enable = true;
};
home-ops = {
enable = true;
containers.enable = false;
Expand Down

0 comments on commit ed4a53b

Please sign in to comment.