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

Remove unused function parameter

This commit is contained in:
RGBCube 2024-01-02 16:14:06 +03:00
parent fc4496ce2e
commit ce915b2817
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
lib: users: let
configuration = import ./configuration.nix lib users;
merge = import ./merge.nix lib;
merge = import ./merge.nix;
values = import ./values.nix;
in configuration // merge // values

View file

@ -1,4 +1,4 @@
lib: let
let
mergeAll = builtins.foldl' (collected: module: {
imports = collected.imports ++ [ module ];
}) { imports = []; };