updated packages

This commit is contained in:
Leyla Becker 2024-12-26 23:05:23 -06:00
parent 48dc0b1150
commit 7127b9f9e8
2 changed files with 24 additions and 17 deletions

View file

@ -1,10 +1,17 @@
{config, ...}: {
home.persistence."/persistent/home/${config.home.username}" = {
directories = [
".ssh"
"desktop"
"downloads"
"documents"
];
{
lib,
config,
osConfig,
...
}: {
config = lib.mkIf osConfig.host.impermanence.enable {
home.persistence."/persistent/home/${config.home.username}" = {
directories = [
".ssh"
"desktop"
"downloads"
"documents"
];
};
};
}