about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2024-06-09T16·58+0300
committerclbot <clbot@tvl.fyi>2024-06-09T17·56+0000
commitf1c07d4e173f4b63cd55d82646313a204fa2e378 (patch)
treecd2c0ac57fefe9b25662cf1239e44a7845dda1ef
parent122f0cf1be22b250e32b45a6fefb61c1617b86d1 (diff)
feat(tazjin/home): add home config for arbat r/8233
It needs to load the persistence module.

Change-Id: Ie228ac1ef9af030d7f0a2ef5c8585bfa0903b835
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11771
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--users/tazjin/home/arbat.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/users/tazjin/home/arbat.nix b/users/tazjin/home/arbat.nix
new file mode 100644
index 0000000000..83daf2012c
--- /dev/null
+++ b/users/tazjin/home/arbat.nix
@@ -0,0 +1,11 @@
+# Home manage configuration for arbat.
+
+{ depot, pkgs, ... }: # readTree
+{ config, lib, ... }: # home-manager
+
+{
+  imports = [
+    depot.users.tazjin.home.shared
+    depot.users.tazjin.home.persistence
+  ];
+}