diff options
author | Vincent Ambo <mail@tazj.in> | 2024-06-09T16·58+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-09T17·56+0000 |
commit | f1c07d4e173f4b63cd55d82646313a204fa2e378 (patch) | |
tree | cd2c0ac57fefe9b25662cf1239e44a7845dda1ef /users/tazjin/home | |
parent | 122f0cf1be22b250e32b45a6fefb61c1617b86d1 (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
Diffstat (limited to 'users/tazjin/home')
-rw-r--r-- | users/tazjin/home/arbat.nix | 11 |
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 000000000000..83daf2012ca0 --- /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 + ]; +} |