diff options
author | lassulus <lassulus@lassul.us> | 2023-01-02 01:23:42 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2023-01-02 01:45:31 +0100 |
commit | 767c6fbd14fc8e5eb73cea2f738af88083fcea32 (patch) | |
tree | 11afd5208cf2ff4d260166bce4d08d2410067b5a /lass/2configs/yellow-host.nix | |
parent | de0226995d553e4a70170ce59483a6d71f41932d (diff) |
l yellow.r: move to neoprism, refactor
Diffstat (limited to 'lass/2configs/yellow-host.nix')
-rw-r--r-- | lass/2configs/yellow-host.nix | 14 |
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; + }; +} |