at 23.11-beta 620 B view raw
1# Edit this configuration file to define what should be installed on 2# your system. Help is available in the configuration.nix(5) man page 3# and in the NixOS manual (accessible by running ‘nixos-help’). 4 5{ config, pkgs, lib, modulesPath, ... }: 6 7{ 8 imports = 9 [ 10 # Include the default lxd configuration. 11 "${modulesPath}/virtualisation/lxd-virtual-machine.nix" 12 # Include the container-specific autogenerated configuration. 13 ./lxd.nix 14 ]; 15 16 networking.useDHCP = false; 17 networking.interfaces.eth0.useDHCP = true; 18 19 system.stateVersion = "@stateVersion@"; # Did you read the comment? 20}