Remove redundant null filters

This commit is contained in:
Robert Hensing 2022-09-28 19:13:41 +02:00
parent f17e9dba09
commit e511bc4812
5 changed files with 7 additions and 22 deletions

View file

@ -43,10 +43,7 @@ in
flake.devShells =
mapAttrs
(k: v: v.devShells)
(filterAttrs
(k: v: v.devShells != null)
config.allSystems
);
config.allSystems;
perInput = system: flake:
optionalAttrs (flake?devShells.${system}) {