tvl-depot/users/tazjin/home/tverskoy.nix
Vincent Ambo aa29f359b8 chore(tazjin/home): persist another path on both laptops
Change-Id: I57f174c66b06212cf6fbce26ec9097a83b24abd0
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5693
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
2022-05-26 17:40:59 +00:00

17 lines
302 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"
".local/share/Steam"
];
};
}