summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/hotdog-host.nix
blob: ab2b22b7c5af316371f2216f09928b6159dedbf2 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, ... }:
{
  krebs.sync-containers3.containers.hotdog = {
    sshKey = "${config.krebs.secret.directory}/hotdog.sync.key";
  };
  containers.hotdog.bindMounts."/var/lib" = {
    hostPath = "/var/lib/sync-containers3/hotdog/state";
    isReadOnly = false;
  };
}