summaryrefslogtreecommitdiffstats
path: root/lass/2configs/yellow-host.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-01-06 12:17:36 +0100
committertv <tv@krebsco.de>2023-01-06 12:17:36 +0100
commit2cd5ed169963725cabda22635f5b4439be5e9ad0 (patch)
treebc11f3954b96f2fad2349661a1e8c4569ea84160 /lass/2configs/yellow-host.nix
parent221d5dc01244ffce0c14426e90b76f392d4c5dfa (diff)
parent0b2952f4ed9572521f7c4a21904943ac33c602b0 (diff)
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'lass/2configs/yellow-host.nix')
-rw-r--r--lass/2configs/yellow-host.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/lass/2configs/yellow-host.nix b/lass/2configs/yellow-host.nix
new file mode 100644
index 000000000..d07c222c6
--- /dev/null
+++ b/lass/2configs/yellow-host.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, ... }:
+{
+ lass.sync-containers3.containers.yellow = {
+ sshKey = "${toString <secrets>}/yellow.sync.key";
+ };
+ containers.yellow.bindMounts."/var/lib" = {
+ hostPath = "/var/lib/sync-containers3/yellow/state";
+ isReadOnly = false;
+ };
+ containers.yellow.bindMounts."/var/download" = {
+ hostPath = "/var/download";
+ isReadOnly = false;
+ };
+}