diff --git a/machines/louise/configuration.nix b/machines/louise/configuration.nix index c160b54c..1458d5e1 100644 --- a/machines/louise/configuration.nix +++ b/machines/louise/configuration.nix @@ -46,7 +46,11 @@ networking.networkmanager.enable = true; sound.enable = true; - hardware.pulseaudio.enable = true; + hardware.pulseaudio = { + enable = true; + zeroconf.discovery.enable = true; + }; + time.timeZone = "Europe/Berlin"; system.stateVersion = "23.05"; # Do.. Not.. Change.. diff --git a/machines/modules/malobeo_user.nix b/machines/modules/malobeo_user.nix index b0a31894..a7d29769 100644 --- a/machines/modules/malobeo_user.nix +++ b/machines/modules/malobeo_user.nix @@ -6,7 +6,7 @@ in { users.users.malobeo = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "pulse-access" ]; openssh.authorizedKeys.keys = sshKeys.admins; initialPassword = "test"; };