nixos/systems/proxmox-vm/configuration.nix

17 lines
250 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 = {
2022-01-01 15:33:46 +01:00
hostName = "nixos-test-vm";
2022-01-01 15:21:51 +01:00
interfaces.enp0s18.useDHCP = true;
};
}