summaryrefslogtreecommitdiff
path: root/common/default.nix
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-03-06 21:37:34 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-03-06 21:37:34 +0530
commit0de067092c9dd19c3352554e39de73e172f29b42 (patch)
tree4175503766405733846687efdb29657bb322dccd /common/default.nix
parentf1de2014dcd426e015a2638222160d9d349ea4e5 (diff)
Add modules
Diffstat (limited to 'common/default.nix')
-rw-r--r--common/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/default.nix b/common/default.nix
new file mode 100644
index 0000000..c6d3f68
--- /dev/null
+++ b/common/default.nix
@@ -0,0 +1,9 @@
+inputs:
+{ lib, ... }:
+{
+ imports = [
+ (lib.modules.importApply ./modules { inherit inputs; })
+ ];
+ # flake.templates = import ./templates inputs;
+ # flake.homeModules.programs = import ./programs;
+}