d54b1f5b30
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>
19 lines
344 B
Nix
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"
|
|
];
|
|
};
|
|
}
|