about summary refs log tree commit diff
path: root/ops/modules/default-imports.nix
blob: 11514a437a42dbac204fd21a2330fc6b76690198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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
  ];
}