blob: 7a997ec8cdd0bb0e4f2c946ff511711394988664 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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"
];
};
}
|