summaryrefslogtreecommitdiff
path: root/modules/base.nix
diff options
context:
space:
mode:
authorAmir Saeid <amir@glgdgt.com>2026-03-08 20:12:44 +0000
committerAmir Saeid <amir@glgdgt.com>2026-03-08 20:12:44 +0000
commit1b95597c921f7a94e0e7b08871d51f941076c319 (patch)
tree663383bc82412d690cd44927bf8cd289d3a3c4c6 /modules/base.nix
Initial commit
Diffstat (limited to 'modules/base.nix')
-rw-r--r--modules/base.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/base.nix b/modules/base.nix
new file mode 100644
index 0000000..bf5efe9
--- /dev/null
+++ b/modules/base.nix
@@ -0,0 +1,20 @@
+{ config
+, pkgs
+, lib
+, userOptions
+, ...
+}:
+{
+ home.stateVersion = "25.11";
+
+ imports = [
+ ./host-common.nix
+ ./dev-tools.nix
+ ./shell.nix
+ ./term.nix
+ ];
+
+ home.packages = with pkgs; [ nixd ];
+
+ programs.home-manager.enable = true;
+}