about summary refs log tree commit diff
path: root/ops/modules/default-imports.nix
{ depot, ... }:

# Default set of modules that are imported in all Depot nixos systems
#
# All modules here should be properly gated behind a `lib.mkEnableOption` with a
# `lib.mkIf` for the config.

{
  imports = [
    ./automatic-gc.nix
    ./auto-deploy.nix
    ./tvl-cache.nix
  ];
}