14 lines
379 B
Nix
14 lines
379 B
Nix
{
|
|
lib,
|
|
config,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf (config.services.panoramax.enable && osConfig.host.impermanence.enable) {
|
|
# TODO: configure impermanence for panoramax data
|
|
# This would typically include directories like:
|
|
# - /var/lib/panoramax
|
|
# - panoramax storage directories
|
|
# - any cache or temporary directories that need to persist
|
|
};
|
|
}
|