• Move lazydocker pkg to docker.nix • Extends backup service generator with optional scheduling, verbose logging, and new mkAppriseUrl • Refactors backup configurations and renames files for clarity • Introduces backup chain orchestration for smoother maintenance • Updates Apprise URL generation and removes deprecated secret spec functions
14 lines
223 B
Nix
14 lines
223 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
};
|
|
oci-containers.backend = "docker";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
lazydocker
|
|
];
|
|
}
|