15 lines
502 B
Nix
15 lines
502 B
Nix
{ lib, ... }: {
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
# replicates the default behaviour.
|
|
networking.useDHCP = false;
|
|
networking.interfaces.ens18.useDHCP = lib.mkDefault true;
|
|
|
|
# Enable the OpenSSH daemon.
|
|
services.openssh.enable = true;
|
|
services.openssh.permitRootLogin = lib.mkDefault "yes";
|
|
|
|
# Enable qemu guest agent
|
|
services.qemuGuest.enable = true;
|
|
}
|