mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
fixed website container stateless ssh-keys
This commit is contained in:
parent
01851cab86
commit
c4a813ac15
2 changed files with 10 additions and 6 deletions
|
|
@ -5,8 +5,7 @@ _: {...}: {
|
|||
hostBridge = "bridge0";
|
||||
localAddress = "192.168.1.10/24";
|
||||
localAddress6 = "2605:59c8:252e:500:200:ff:fe00:10/64";
|
||||
bindMounts."/persist/minecraft" = {
|
||||
mountPoint = "/minecraft";
|
||||
bindMounts."/minecraft" = {
|
||||
hostPath = "/persist/minecraft";
|
||||
isReadOnly = false;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue