This commit is contained in:
Sandro - 2023-11-11 04:25:36 +01:00
parent 190cd4ece1
commit 3af388b5f0
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
7 changed files with 9 additions and 11 deletions

View File

@ -694,10 +694,10 @@
sshlog = nixosSystem' {
modules = [
./hosts/sshlog
self.nixosModules.cluster-options
self.nixosModules.microvm
sshlogd.nixosModule
./hosts/sshlog
];
};

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, ... }:
{
c3d2 = {
deployment.server = "server10";

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, pkgs, ... }:
let
c3d2MacAddress = "00:0b:ad:00:1d:ea";

View File

@ -48,6 +48,7 @@ in
services = {
portunus.addToHosts = true;
postfix = {
enable = true;
enableSmtp = true;

View File

@ -111,9 +111,8 @@
journald.extraConfig = ''
Storage=volatile
'';
openssh = {
enable = true;
};
openssh.enable = true;
# Allow access to USB
udev.extraRules = ''
SUBSYSTEM=="usb", MODE:="0666"

View File

@ -43,9 +43,9 @@ in
"/etc/machine-id"
"/etc/passwd"
"/etc/shadow"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_ed25519_key.pub"
"/etc/ssh/ssh_host_rsa_key"
"/etc/ssh/ssh_host_rsa_key.pub"
"/etc/subgid"
"/etc/subuid"

View File

@ -1,4 +1,4 @@
{ zentralwerk, options, config, lib, pkgs, ... }:
{ zentralwerk, config, lib, pkgs, ... }:
let
defaultGateways = {
@ -60,9 +60,7 @@ in
};
mountBase = mkOption {
description = ''
Location (ZFS dataset, ...) where all the shares live.
'';
description = "Location (ZFS dataset, ...) where all the shares live.";
type = types.path;
default = "/var/lib/microvms/${hostName}";
};