diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-03-14 11:02:14 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-03-14 11:02:14 -0700 |
commit | de6f89d8c86bf504abf3161259f3cb7f01d1b78a (patch) | |
tree | 616bd0f5c6b030f651143d19408c0b3489dc7efd /hosts/common/optional/pipewire.nix | |
parent | 62ebbe65f8efe5c855bb7a51d4ee596e9047e939 (diff) | |
download | nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar.gz nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar.bz2 nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar.lz nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar.xz nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.tar.zst nix-de6f89d8c86bf504abf3161259f3cb7f01d1b78a.zip |
Fix syntax
Diffstat (limited to '')
-rw-r--r-- | hosts/common/optional/pipewire.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/hosts/common/optional/pipewire.nix b/hosts/common/optional/pipewire.nix index 6a22af9..e485fbc 100644 --- a/hosts/common/optional/pipewire.nix +++ b/hosts/common/optional/pipewire.nix @@ -1,13 +1,12 @@ { pkgs, ... }: { - environment.systemPackages = builtins.attrValues { - inherit (pkgs) - easyeffects - pamixer - pavucontrol - master.pwvucontrol - qpwgraph; - }; + environment.systemPackages = with pkgs; [ + easyeffects + pamixer + pavucontrol + master.pwvucontrol + qpwgraph; + ]; security.pam.loginLimits = [ { domain = "@audio"; item = "memlock"; type = "-" ; value = "unlimited"; } |