summaryrefslogtreecommitdiff
path: root/bragi.nix
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-02 15:11:02 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-08-02 15:11:02 +0200
commit4baf0e1d915d14a277d19debcf3be3ee5b74eddd (patch)
tree52016b393ae42010e974376867adba55a1771848 /bragi.nix
parente77ceb61e353fc55d0bdb82b758d66f00f86fdac (diff)
downloadnixos-4baf0e1d915d14a277d19debcf3be3ee5b74eddd.tar
nixos-4baf0e1d915d14a277d19debcf3be3ee5b74eddd.tar.gz
nixos-4baf0e1d915d14a277d19debcf3be3ee5b74eddd.tar.bz2
nixos-4baf0e1d915d14a277d19debcf3be3ee5b74eddd.tar.xz
nixos-4baf0e1d915d14a277d19debcf3be3ee5b74eddd.zip
enable avahi on bragi
Diffstat (limited to 'bragi.nix')
-rw-r--r--bragi.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/bragi.nix b/bragi.nix
index e0d3623d..1c1fafc7 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -119,6 +119,14 @@ in rec {
119 systemd.services."passmix4" = trivmixService { name = "passmix4"; connectOut = "system:playback_3"; connectIn = "system:capture_7"; group = "hel_out"; }; 119 systemd.services."passmix4" = trivmixService { name = "passmix4"; connectOut = "system:playback_3"; connectIn = "system:capture_7"; group = "hel_out"; };
120 systemd.services."passmix5" = trivmixService { name = "passmix5"; connectOut = "system:playback_4"; connectIn = "system:capture_8"; group = "hel_out"; }; 120 systemd.services."passmix5" = trivmixService { name = "passmix5"; connectOut = "system:playback_4"; connectIn = "system:capture_8"; group = "hel_out"; };
121 121
122 services.avahi = {
123 enable = true;
124 domainName = "bragisheimr.yggdrasil";
125 browseDomains = [ "asgard.yggdrasil"
126 "yggdrasil"
127 ];
128 };
129
122 hardware.pulseaudio = { 130 hardware.pulseaudio = {
123 enable = true; 131 enable = true;
124 package = with pkgs; pulseaudioFull; 132 package = with pkgs; pulseaudioFull;