summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-05 07:01:21 -0400
committerseth <[email protected]>2024-07-09 15:38:51 -0400
commitbe286a453d1902af09431f28a5a02a8c00a954ea (patch)
treee0b774db2066c08a095ca827c14ccc96d6654b18
parent1f7efe32e4dd69db644568a0a1d36cd01cfd6233 (diff)
tree-wide: move dev outputs to dev/
-rw-r--r--dev/checks.nix (renamed from checks.nix)0
-rw-r--r--dev/default.nix13
-rw-r--r--dev/devShells.nix (renamed from devShells.nix)0
-rw-r--r--dev/hydraJobs.nix (renamed from hydraJobs.nix)0
-rw-r--r--flake.nix15
5 files changed, 15 insertions, 13 deletions
diff --git a/checks.nix b/dev/checks.nix
index 56c5038..56c5038 100644
--- a/checks.nix
+++ b/dev/checks.nix
diff --git a/dev/default.nix b/dev/default.nix
new file mode 100644
index 0000000..105273c
--- /dev/null
+++ b/dev/default.nix
@@ -0,0 +1,13 @@
+{
+ imports = [
+ ./checks.nix
+ ./devShells.nix
+ ./hydraJobs.nix
+ ];
+
+ perSystem =
+ { pkgs, ... }:
+ {
+ formatter = pkgs.nixfmt-rfc-style;
+ };
+}
diff --git a/devShells.nix b/dev/devShells.nix
index 9bed89b..9bed89b 100644
--- a/devShells.nix
+++ b/dev/devShells.nix
diff --git a/hydraJobs.nix b/dev/hydraJobs.nix
index 9cc4617..9cc4617 100644
--- a/hydraJobs.nix
+++ b/dev/hydraJobs.nix
diff --git a/flake.nix b/flake.nix
index 547b020..0982525 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,25 +18,14 @@
imports = [
# primary outputs
+ ./dev
./lib
./modules
./systems
./users
- # dev outputs
- ./checks.nix
- ./devShells.nix
- ./hydraJobs.nix
-
- # external, not so nix-y things
- ./ext
+ ./ext # external, not so nix-y things
];
-
- perSystem =
- { pkgs, ... }:
- {
- formatter = pkgs.nixfmt-rfc-style;
- };
};
inputs = {