qgroundcontrol: 4.4.2 -> 4.4.3 (#360956)
[NixPkgs.git] / nixos / maintainers / scripts / lxd / lxd-container-image-inner.nix
blob5468488fafedc5fa70d1343312747e27f534b62a
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’).
5 { modulesPath, ... }:
8   imports =
9     [
10       # Include the default lxd configuration.
11       "${modulesPath}/virtualisation/lxc-container.nix"
12       # Include the container-specific autogenerated configuration.
13       ./lxd.nix
14     ];
16   networking = {
17     dhcpcd.enable = false;
18     useDHCP = false;
19     useHostResolvConf = false;
20   };
22   systemd.network = {
23     enable = true;
24     networks."50-eth0" = {
25       matchConfig.Name = "eth0";
26       networkConfig = {
27         DHCP = "ipv4";
28         IPv6AcceptRA = true;
29       };
30       linkConfig.RequiredForOnline = "routable";
31     };
32   };
34   system.stateVersion = "@stateVersion@"; # Did you read the comment?