main #2

Merged
Lithospherical merged 42 commits from jan-leila/nix-config:main into main 2025-06-05 04:13:47 +00:00
6 changed files with 36 additions and 6 deletions
Showing only changes of commit 54722eff61 - Show all commits

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;
};
} }
) )
]); ]);