1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Move collect to inside lib

This commit is contained in:
RGBCube 2025-01-24 23:50:51 +03:00
parent d5e7291b82
commit 64e2dc5f71
3 changed files with 25 additions and 22 deletions

View file

@ -1,5 +1,6 @@
inputs: self: super: let
option = import ./option.nix inputs self super;
system = import ./system.nix inputs self super;
values = import ./values.nix inputs self super;
in option // system // values
filesystem = import ./filesystem.nix inputs self super;
option = import ./option.nix inputs self super;
system = import ./system.nix inputs self super;
values = import ./values.nix inputs self super;
in filesystem // option // system // values