summaryrefslogtreecommitdiff
path: root/hosts/mentat/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/mentat/home.nix')
-rw-r--r--hosts/mentat/home.nix21
1 files changed, 21 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
+ ];
+}