From 976f90b793f27e4b38297753583c9f3cd24cd7cd Mon Sep 17 00:00:00 2001 From: ene Date: Tue, 21 Feb 2023 11:23:30 +0100 Subject: Feat(hosts): Add lahmu, a vm host --- hosts/lahmu/networking.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hosts/lahmu/networking.nix (limited to 'hosts/lahmu/networking.nix') diff --git a/hosts/lahmu/networking.nix b/hosts/lahmu/networking.nix new file mode 100644 index 00000000..05c7d100 --- /dev/null +++ b/hosts/lahmu/networking.nix @@ -0,0 +1,14 @@ +{ + config, + lib, + ... +}: { + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; + networking.hostName = "mammun"; +} -- cgit 1.4.1