2022-05-09 16:37:01 +02:00
|
|
|
# Home manage configuration for tverskoy.
|
|
|
|
|
|
|
|
{ depot, pkgs, ... }: # readTree
|
|
|
|
{ config, lib, ... }: # home-manager
|
|
|
|
|
|
|
|
{
|
2022-05-09 16:42:19 +02:00
|
|
|
imports = [
|
|
|
|
depot.users.tazjin.home.shared
|
|
|
|
];
|
2022-05-09 16:37:01 +02:00
|
|
|
|
|
|
|
home.persistence."/persist/tazjin/home" = {
|
|
|
|
directories = [
|
|
|
|
".config/spotify"
|
|
|
|
".local/share/Steam"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|