create custom module system

This commit is contained in:
Pim Kunis 2023-11-22 18:28:55 +01:00
parent 74bcda2c80
commit e19e738b04
8 changed files with 86 additions and 19 deletions

View file

@ -2,7 +2,16 @@
jefke = {
name = "jefke";
hostname = "jefke.hyp";
user-cert = builtins.readFile ./jefke_user_ed25519-cert.pub;
host-cert = builtins.readFile ./jefke_host_ed25519-cert.pub;
specificConfig = {
custom = {
dataDisk.enable = true;
ssh = {
hostCert = builtins.readFile ./jefke_host_ed25519-cert.pub;
userCert = builtins.readFile ./jefke_user_ed25519-cert.pub;
};
};
};
};
}