27 lines
403 B
Nix
27 lines
403 B
Nix
![]() |
{modulesPath, ...}: {
|
||
|
imports = [
|
||
|
"${modulesPath}/profiles/qemu-guest.nix"
|
||
|
];
|
||
|
|
||
|
system.stateVersion = "24.11";
|
||
|
|
||
|
services.cloud-init = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
users.users.root.initialPassword = "nixos";
|
||
|
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
useNetworkd = true;
|
||
|
firewall.enable = true;
|
||
|
};
|
||
|
|
||
|
systemd.network.enable = true;
|
||
|
|
||
|
console.keyMap = "us";
|
||
|
}
|