0
0
Fork 0
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:
Jan Tojnar 2024-12-01 18:51:09 +01:00
parent 8fe87559a9
commit e221971ee7

View file

@ -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;