19 lines
320 B
Nix
19 lines
320 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"
|
||
|
".electrum"
|
||
|
];
|
||
|
};
|
||
|
}
|