Initial commit
This commit is contained in:
commit
9661927410
27 changed files with 1091 additions and 0 deletions
15
modules/flake/default.nix
Normal file
15
modules/flake/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
flake-parts-lib,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
inherit (flake-parts-lib) importApply;
|
||||
flakeModules = {
|
||||
configurations = importApply ./configurations.nix {inherit (inputs) nixpkgs darwin home-manager;};
|
||||
};
|
||||
in {
|
||||
imports = lib.attrValues flakeModules;
|
||||
|
||||
flake = {inherit flakeModules;};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue