feat: update nixpkgs

This commit is contained in:
Leon Schwarzäugl 2025-02-25 13:57:00 +01:00
parent bba479852b
commit 5b591ba10b
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
9 changed files with 520 additions and 381 deletions

View file

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... }: {
services.pulseaudio = {
enable = lib.mkIf (!config.services.pipewire.enable) true;
package = pkgs.pulseaudioFull;
};
}