summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-01 10:41:09 -0400
committerseth <[email protected]>2023-10-01 10:49:46 -0400
commita8630322f77dbb7be4810099a42352b9278996a1 (patch)
treeb8df66a7e5b9d8c31b27a4a9b357ff7e4b9d418f /flake.nix
parent30f55e656d344e017f66ecbae8eb27cf13ba53bb (diff)
treewide!: flatten to parts/ layout
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix15
1 files changed, 2 insertions, 13 deletions
diff --git a/flake.nix b/flake.nix
index 0ec03d7..f25864f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -119,19 +119,8 @@
flake-utils.url = "github:numtide/flake-utils";
};
- outputs = {
- parts,
- pre-commit,
- ...
- } @ inputs:
+ outputs = {parts, ...} @ inputs:
parts.lib.mkFlake {inherit inputs;} {
- imports = [
- pre-commit.flakeModule
-
- ./hosts
- ./modules
- ./parts
- ./users
- ];
+ imports = [./parts];
};
}