tvl-depot/users/tazjin/home/tverskoy.nix
Vincent Ambo d54b1f5b30 refactor(tazjin/home): Split shared config into separate file
Change-Id: I898f1552f449e2d6bddc8e3e3a144d6c2490ce29
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5551
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
2022-05-10 13:41:33 +00:00

19 lines
344 B
Nix

# Home manage configuration for tverskoy.
{ depot, pkgs, ... }: # readTree
{ config, lib, ... }: # home-manager
{
imports = [
depot.users.tazjin.home.shared
];
home.persistence."/persist/tazjin/home" = {
directories = [
".config/spotify"
".config/unity3d"
".local/share/Steam"
".electrum"
];
};
}