fixed website container stateless ssh-keys

This commit is contained in:
Gerg-L 2023-03-12 03:56:51 +00:00
parent 01851cab86
commit c4a813ac15
2 changed files with 10 additions and 6 deletions

View file

@ -6,10 +6,15 @@ _: {...}: {
hostBridge = "bridge0";
localAddress = "192.168.1.11/24";
localAddress6 = "2605:59c8:252e:500:200:ff:fe00:11/64";
bindMounts."/persist/website" = {
mountPoint = "/var";
hostPath = "/persist/website";
isReadOnly = false;
bindMounts = {
"/var" = {
hostPath = "/persist/website/var";
isReadOnly = false;
};
"/etc/ssh" = {
hostPath = "/persist/website/etc/ssh/";
isReadOnly = false;
};
};
config = {
pkgs,