From 1b95597c921f7a94e0e7b08871d51f941076c319 Mon Sep 17 00:00:00 2001 From: Amir Saeid Date: Sun, 8 Mar 2026 20:12:44 +0000 Subject: Initial commit --- hosts/gheshki/home.nix | 13 +++++++++++++ hosts/gheshki/userOptions.nix | 6 ++++++ hosts/mentat/home.nix | 21 +++++++++++++++++++++ hosts/mentat/userOptions.nix | 6 ++++++ 4 files changed, 46 insertions(+) create mode 100644 hosts/gheshki/home.nix create mode 100644 hosts/gheshki/userOptions.nix create mode 100644 hosts/mentat/home.nix create mode 100644 hosts/mentat/userOptions.nix (limited to 'hosts') diff --git a/hosts/gheshki/home.nix b/hosts/gheshki/home.nix new file mode 100644 index 0000000..c02c1f8 --- /dev/null +++ b/hosts/gheshki/home.nix @@ -0,0 +1,13 @@ +{ config +, pkgs +, unstablePkgs +, unfreePkgs +, unstableUnfreePkgs +, userOptions +, ... +}: +{ + imports = [ + ../../modules/base.nix + ]; +} diff --git a/hosts/gheshki/userOptions.nix b/hosts/gheshki/userOptions.nix new file mode 100644 index 0000000..301838b --- /dev/null +++ b/hosts/gheshki/userOptions.nix @@ -0,0 +1,6 @@ +{ + username = "amir"; + userHome = "/home/amir"; + gitEmail = "amir@glgdgt.com"; + gitName = "Amir Saeid"; +} 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"; +} -- cgit v1.2.3