12 lines
217 B
Nix
12 lines
217 B
Nix
{ config, ... }:
|
|
{
|
|
home.persistence."/persist/home/${config.snowfallorg.user.name}" = {
|
|
directories = [
|
|
".ssh"
|
|
".config/sops/age"
|
|
];
|
|
allowOther = true;
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|