diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-05-20 13:10:43 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-05-20 13:10:43 -0700 |
commit | e8aa64d40d2ffaa816c9ac328e77110765304653 (patch) | |
tree | 6e30bb66e29caa4d1eea61342949ccc388075629 /hosts/common/optional/pipewire.nix | |
parent | 0bf5f51f35ad51944e2bb9255e83eb2c221211c4 (diff) | |
download | nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.gz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.bz2 nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.lz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.xz nix-e8aa64d40d2ffaa816c9ac328e77110765304653.tar.zst nix-e8aa64d40d2ffaa816c9ac328e77110765304653.zip |
Update environment.systemPackages syntax
Diffstat (limited to 'hosts/common/optional/pipewire.nix')
-rw-r--r-- | hosts/common/optional/pipewire.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hosts/common/optional/pipewire.nix b/hosts/common/optional/pipewire.nix index a2c9b1a..ef50b9c 100644 --- a/hosts/common/optional/pipewire.nix +++ b/hosts/common/optional/pipewire.nix @@ -1,11 +1,11 @@ { pkgs, ... }: { - environment.systemPackages = with pkgs; [ - easyeffects - pamixer - pavucontrol - pwvucontrol - qpwgraph + environment.systemPackages = [ + pkgs.easyeffects + pkgs.pamixer + pkgs.pavucontrol + pkgs.pwvucontrol + pkgs.qpwgraph ]; security.pam.loginLimits = [ |