aa29f359b8
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
17 lines
302 B
Nix
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"
|
|
];
|
|
};
|
|
}
|