nixos/systems/proxmox-vm/configuration.nix

16 lines
218 B
Nix

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