Skip to content

Commit 973cc06

Browse files
author
BirdeeHub
committed
ci(flake): flake
1 parent dc1d747 commit 973cc06

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

flake.nix

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,10 @@
5151
};
5252
packages = forAllSys (system: let
5353
pkgs = getpkgswithoverlay system;
54-
in (with builtins; pkgs.lib.pipe l_pkg_enum [
55-
attrNames
56-
(map (n: {
57-
name = "${n}-${APPNAME}";
58-
value = pkgs.lib.attrByPath [ n "pkgs" APPNAME ] null pkgs;
59-
}))
60-
listToAttrs
61-
]) // {
54+
in (with builtins; listToAttrs (map (n: {
55+
name = "${n}-${APPNAME}";
56+
value = pkgs.lib.attrByPath [ n "pkgs" APPNAME ] null pkgs;
57+
}) (attrNames l_pkg_enum))) // {
6258
default = pkgs.vimPlugins.${APPNAME};
6359
"vimPlugins-${APPNAME}" = pkgs.vimPlugins.${APPNAME};
6460
});

0 commit comments

Comments
 (0)