diff options
| author | Seth Flynn <[email protected]> | 2025-02-22 07:30:27 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-22 07:30:27 -0500 |
| commit | 8a5e7449bf53b8ad0daf6847d76df7c91385740f (patch) | |
| tree | 0c60b1332f4b7efbb06c7c7b42690492d8c85642 /flake.nix | |
| parent | 24a32770a1515b7e25ec1bb3e44d3c2442c1c6d6 (diff) | |
flake/colmena: initcolmena
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -9,6 +9,10 @@ outputs = inputs: + let + flakeModules = import ./modules/flake; + in + inputs.flake-parts.lib.mkFlake { inherit inputs; } { systems = [ "x86_64-linux" @@ -18,6 +22,7 @@ ]; imports = [ + flakeModules.colmena inputs.getchpkgs.flakeModules.checks inputs.getchpkgs.flakeModules.configurations @@ -28,6 +33,8 @@ ./systems ./users ]; + + flake = { inherit flakeModules; }; }; inputs = { @@ -71,6 +78,16 @@ flake = false; }; + colmena = { + url = "github:zhaofengli/colmena"; + inputs = { + nixpkgs.follows = "nixpkgs"; + stable.follows = ""; + nix-github-actions.follows = ""; + flake-compat.follows = ""; + }; + }; + comin = { url = "github:nlewo/comin"; inputs.nixpkgs.follows = "nixpkgs"; |
