tvl-depot/users/tazjin/home/tverskoy.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
342 B
Nix
Raw Normal View History

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