nixos/systems/proxmox-vm/configuration.nix

17 lines
250 B
Nix

{ ... }:
{
imports =
[
# Include the results of the hardware scan.
../../modules/common.nix
./hardware-configuration.nix
];
networking = {
hostName = "nixos-test-vm";
interfaces.enp0s18.useDHCP = true;
};
}