summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 76c116f..f07881a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -112,15 +112,21 @@
};
};
- outputs = inputs:
- inputs.flake-parts.lib.mkFlake
+ outputs = {
+ flake-parts,
+ getchoo,
+ pre-commit-hooks,
+ ...
+ } @ inputs:
+ flake-parts.lib.mkFlake
{inherit inputs;}
{
imports = [
./hosts
./parts
./users
- inputs.getchoo.flakeModules.homeConfigurations
+ getchoo.flakeModules.homeConfigurations
+ pre-commit-hooks.flakeModule
];
};
}