summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-19 21:18:10 -0400
committerseth <[email protected]>2023-08-19 22:35:45 -0400
commitd0e95ba2c00f6a87087823338543b4c9cba3f10b (patch)
tree1ccf225f758b36781946808d693ef1b2118e73e6 /modules
parent7c73c16e76695947e8f0098fea8be33880113fac (diff)
start using flake-parts & hercules-ci
Diffstat (limited to 'modules')
-rw-r--r--modules/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/default.nix b/modules/default.nix
new file mode 100644
index 0000000..9b68c34
--- /dev/null
+++ b/modules/default.nix
@@ -0,0 +1,10 @@
+_: {
+ flake = {
+ flakeModules = {
+ default = import ./flake;
+ homeConfigurations = import ./flake/homeConfigurations.nix;
+ homeManagerModules = import ./flake/homeManagerModules.nix;
+ hydraJobs = import ./flake/hydraJobs.nix;
+ };
+ };
+}