summaryrefslogtreecommitdiff
path: root/hosts/mentat
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 /hosts/mentat
Initial commit
Diffstat (limited to 'hosts/mentat')
-rw-r--r--hosts/mentat/home.nix21
-rw-r--r--hosts/mentat/userOptions.nix6
2 files changed, 27 insertions, 0 deletions
diff --git a/hosts/mentat/home.nix b/hosts/mentat/home.nix
new file mode 100644
index 0000000..3351cbe
--- /dev/null
+++ b/hosts/mentat/home.nix
@@ -0,0 +1,21 @@
+{ config
+, pkgs
+, unstablePkgs
+, unfreePkgs
+, unstableUnfreePkgs
+, userOptions
+, ...
+}:
+{
+ imports = [
+ ../../modules/base.nix
+ ];
+
+ home.sessionPath = [
+ "${userOptions.userHome}/Library/Application Support/Coursier/bin"
+ ];
+
+ home.packages = [
+ pkgs.stats
+ ];
+}
diff --git a/hosts/mentat/userOptions.nix b/hosts/mentat/userOptions.nix
new file mode 100644
index 0000000..554ce1d
--- /dev/null
+++ b/hosts/mentat/userOptions.nix
@@ -0,0 +1,6 @@
+{
+ username = "amir";
+ userHome = "/Users/amir";
+ gitEmail = "amir@glgdgt.com";
+ gitName = "Amir Saeid";
+}