mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
nixos/budgie: Switch notExcluded to disablePackageByName
Previously, this check was inconsistent with `removePackagesByName` – the latter compares the packages using their names.
This commit is contained in:
parent
8fe87559a9
commit
e221971ee7
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ let
|
|||
enableSshSocket = config.services.openssh.startWhenNeeded;
|
||||
};
|
||||
|
||||
notExcluded = pkg: (!(lib.elem pkg config.environment.budgie.excludePackages));
|
||||
notExcluded = pkg: utils.disablePackageByName pkg config.environment.budgie.excludePackages;
|
||||
in {
|
||||
meta.maintainers = lib.teams.budgie.members;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue