a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
18 lines
320 B
Nix
18 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"
|
|
];
|
|
};
|
|
}
|