nixos/systems/proxmox-vm/configuration.nix

16 lines
218 B
Nix
Raw Normal View History

2022-01-01 15:21:51 +01:00
{ ... }:
{
imports =
[
# Include the results of the hardware scan.
2022-01-01 15:26:53 +01:00
../../modules/common.nix
2022-01-01 15:21:51 +01:00
./hardware-configuration.nix
];
networking = {
interfaces.enp0s18.useDHCP = true;
};
}