summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 7448d6b..ada03f6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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";