15 lines
328 B
Nix
15 lines
328 B
Nix
{...}: {
|
|
flake.homeModules.home-manager-anki = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf (config.programs.anki.enable && config.impermanence.enable) {
|
|
home.persistence."${config.impermanence.persistencePath}" = {
|
|
directories = [
|
|
".local/share/Anki2"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|