mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 11:07:44 +00:00
chore: migrate nine host
This commit is contained in:
parent
f67d2760f7
commit
bf396257de
34 changed files with 400 additions and 177 deletions
|
@ -2,6 +2,6 @@ _: self: super: let
|
|||
inherit (self) filter hasSuffix;
|
||||
inherit (self.filesystem) listFilesRecursive;
|
||||
in {
|
||||
collect = path: listFilesRecursive path
|
||||
collectNix = path: listFilesRecursive path
|
||||
|> filter (hasSuffix ".nix");
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
inputs: self: super: let
|
||||
inherit (self) attrValues filter getAttrFromPath hasAttrByPath collect;
|
||||
inherit (self) attrValues filter getAttrFromPath hasAttrByPath collectNix;
|
||||
|
||||
commonModules = collect ../modules/common;
|
||||
nixosModules = collect ../modules/linux;
|
||||
darwinModules = collect ../modules/darwin;
|
||||
commonModules = collectNix ../modules/common;
|
||||
nixosModules = collectNix ../modules/linux;
|
||||
darwinModules = collectNix ../modules/darwin;
|
||||
|
||||
collectInputs = let
|
||||
inputs' = attrValues inputs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue