summaryrefslogtreecommitdiff
path: root/machines/z/home.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
commit01bb0877c285383fd2857920048bd2576f4d31e9 (patch)
treeb6f26596f1051baf5b791450d6158a69363f6c76 /machines/z/home.nix
parent578dd91bd1af79b256166ecf797344611790e267 (diff)
restructure
Diffstat (limited to 'machines/z/home.nix')
-rw-r--r--machines/z/home.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/machines/z/home.nix b/machines/z/home.nix
new file mode 100644
index 0000000..564d4d5
--- /dev/null
+++ b/machines/z/home.nix
@@ -0,0 +1,20 @@
+{ pkgs, ... }:
+
+{
+
+ home = {
+ username = "compromyse";
+ homeDirectory = "/home/compromyse";
+ };
+
+ imports = [
+ ../../config/themes.nix
+ ../../config/alacritty
+ ];
+
+ home.packages = with pkgs; [
+ wget
+ ];
+
+ home.stateVersion = "23.11";
+}