refactor(homeModules/system): move user config to module

This commit is contained in:
Mohammad Rafiq 2025-05-20 12:35:33 +08:00
parent 84bacb23f0
commit a34c6a294c
No known key found for this signature in database
2 changed files with 13 additions and 9 deletions

View file

@ -0,0 +1,12 @@
{ config, ... }:
{
home.persistence."/persist/home/${config.snowfallorg.user.name}" = {
directories = [
".ssh"
".config/sops/age"
];
allowOther = true;
};
home.stateVersion = "24.11";
}