nixos/hosts/vm/two/default.nix

25 lines
334 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
];
networking.hostName = "two";
boot.loader.grub.devices = [ "/dev/sda" ];
crans = {
enable = true;
networking = {
id = 35;
srvNat = {
enable = true;
interface = "ens19";
};
};
};
system.stateVersion = "23.11";
}