From 32ec56e6e0a62d322fc25fa3b7ec9f3b3389c333 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Fri, 25 Nov 2022 19:55:17 -0800 Subject: [PATCH] euhadra: update --- euhadra.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/euhadra.nix b/euhadra.nix index 06fbacc..849c87c 100644 --- a/euhadra.nix +++ b/euhadra.nix @@ -6,7 +6,7 @@ let mpdStreamingPort = 8080; in [ /etc/nixos/hardware-configuration.nix ./common-headless.nix - ./i3.nix + ./sway.nix ./uefi.nix ./fstrim.nix # ./nebula.nix @@ -37,6 +37,7 @@ let mpdStreamingPort = 8080; in musicDirectory = "/mnt/aplysia/music"; extraConfig = '' bind_to_address "10.59.0.6" + bind_to_address "100.97.134.100" # audio_output { # type "alsa" @@ -67,6 +68,7 @@ let mpdStreamingPort = 8080; in "pulse.properties"."server.address" = [ "unix:native" "tcp:127.0.0.1:4713" + "tcp:100.97.134.100:4713" ]; }; }; @@ -96,7 +98,7 @@ let mpdStreamingPort = 8080; in networking.firewall.allowedTCPPorts = [ config.services.mpd.network.port - # 4713 # pulseaudio + 4713 # pulseaudio mpdStreamingPort # mpd streaming ]; @@ -118,5 +120,7 @@ let mpdStreamingPort = 8080; in # }; # }; - system.stateVersion = "19.03"; + system.stateVersion = "22.05"; + + time.timeZone = pkgs.lib.mkOverride 10 "US/Pacific"; }