nixos/systems/proxmox-vm/configuration.nix

17 lines
251 B
Nix
Raw Normal View History

2022-01-01 15:21:51 +01:00
{ ... }:
{
imports =
[
# Include the results of the hardware scan.
../../modules/desktop.nix
./hardware-configuration.nix
];
networking = {
hostName = "nixos-test-vm";
interfaces.enp0s18.useDHCP = true;
};
}