main #2

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

View file

@ -7,7 +7,11 @@
config = lib.mkIf config.programs.obsidian.enable (lib.mkMerge [
(
lib.mkIf osConfig.host.impermanence.enable {
# TODO: map impermanence for obsidian
home.persistence."/persist${config.home.homeDirectory}" = {
directories = [
".config/obsidian"
];
};
}
)
]);

View file

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

View file

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

View file

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

View file

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