8 lines
162 B
Nix
8 lines
162 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
|
|
config.khscodes = {
|
|
hetzner.enable = true;
|
|
sshd.enable = true;
|
|
};
|
|
}
|