From c67f35acfea374a7b6654b6216aebcf52578419d Mon Sep 17 00:00:00 2001 From: Spotlight Date: Tue, 21 Jan 2025 16:29:15 -0600 Subject: [PATCH] linux: Use non-deprecated PulseAudio option --- flake.lock | 6 +++--- hosts/linux/shared.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 1637bff..d908937 100644 --- a/flake.lock +++ b/flake.lock @@ -92,11 +92,11 @@ ] }, "locked": { - "lastModified": 1737394973, - "narHash": "sha256-EW4oXMfnfA5sNM9Jqm+y98horWVvN66Gu7YIcEpFYZc=", + "lastModified": 1737480538, + "narHash": "sha256-rk/cmrvq3In0TegW9qaAxw+5YpJhRWt2p74/6JStrw0=", "owner": "nix-community", "repo": "home-manager", - "rev": "9786661d57c476021c8a0c3e53bf9fa2b4f3328b", + "rev": "4481a16d1ac5bff4a77c608cefe08c9b9efe840d", "type": "github" }, "original": { diff --git a/hosts/linux/shared.nix b/hosts/linux/shared.nix index ade4828..ed8af77 100644 --- a/hosts/linux/shared.nix +++ b/hosts/linux/shared.nix @@ -61,6 +61,9 @@ pulse.enable = true; }; + # Pipewire conflicts with PulseAudio. + pulseaudio.enable = false; + # As Mozilla's Location Service has shut down, # we'll use geolocation via the Arch Linux API key. geoclue2 = { @@ -69,9 +72,6 @@ }; }; - # Pipewire conflicts with PulseAudio. - hardware.pulseaudio.enable = false; - # Our user! users.users.spotlight = { isNormalUser = true;