create custom module system
This commit is contained in:
parent
74bcda2c80
commit
e19e738b04
8 changed files with 86 additions and 19 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue