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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user