diff --git a/system/features/audio.nix b/system/features/audio.nix index d3ee42b..1053b5f 100644 --- a/system/features/audio.nix +++ b/system/features/audio.nix @@ -1,10 +1,16 @@ -{ ... }: { +{ ... }: +{ # RealtimeKit hands out realtime scheduling priority to user processes on # demand, e.g. audio security.rtkit.enable = true; # Enable sound with pipewire. - services.pulseaudio.enable = false; + services.pulseaudio = { + enable = false; + daemon.config = { + exit-idle-time = -1; + }; + }; services.pipewire = { enable = true; alsa.enable = true; diff --git a/system/hosts/vega/drew.nix b/system/hosts/vega/drew.nix index 3e89e7f..aef5566 100644 --- a/system/hosts/vega/drew.nix +++ b/system/hosts/vega/drew.nix @@ -19,6 +19,7 @@ home.packages = with pkgs; [ slack zoom-us + chromium ]; home.stateVersion = "24.11";