From 4f5cb649b2da2cc130de7f4c95d36c0f655abba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 3 Feb 2024 19:18:47 +0100 Subject: [PATCH] audio-server: fix username --- modules/audio-server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/audio-server.nix b/modules/audio-server.nix index 7c834d82..a15501ef 100644 --- a/modules/audio-server.nix +++ b/modules/audio-server.nix @@ -172,7 +172,7 @@ in sound.enable = true; system.userActivationScripts.symlinkPipewireSystemdUnit.text = lib.mkIf config.c3d2.k-ot.enable /* bash */ '' - if [[ $USERNAME == hotpit ]]; then + if [[ $USERNAME == k-ot ]]; then systemctl --user enable pipewire-pulse fi '';