set up impermanence configurations for applications

This commit is contained in:
Leyla Becker 2025-06-03 21:12:51 -05:00
parent ef03167d23
commit 54722eff61
6 changed files with 36 additions and 6 deletions

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for anki home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.local/share/Anki2"
];
allowOther = true;
};
} }
) )
]); ]);

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for bitwarden home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.config/Bitwarden"
];
allowOther = true;
};
} }
) )
]); ]);

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for bruno home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.config/bruno/"
];
allowOther = true;
};
} }
) )
]); ]);

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for calibre home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.config/calibre"
];
allowOther = true;
};
} }
) )
]); ]);

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for dbeaver home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.local/share/DBeaverData/"
];
allowOther = true;
};
} }
) )
]); ]);

View file

@ -17,7 +17,12 @@
} }
( (
lib.mkIf osConfig.host.impermanence.enable { lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for discord home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
"~/.config/discord/"
];
allowOther = true;
};
} }
) )
]); ]);