mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
15 lines
231 B
Nix
15 lines
231 B
Nix
{username, ...}: {
|
|
home.persistence."/persist/home/${username}" = {
|
|
directories = [
|
|
"Projects"
|
|
".ssh"
|
|
];
|
|
files = [
|
|
".zsh_history"
|
|
];
|
|
allowOther = true;
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|