use systemd-networkd

This commit is contained in:
Christoph Cullmann 2023-01-15 22:48:29 +01:00
parent 5d2ad5824d
commit a3576e284b
4 changed files with 15 additions and 31 deletions

View file

@ -90,10 +90,15 @@ in
];
};
#
# we let the FRITZ!Box do the job
#
networking.useDHCP = true;
# allow all firmware
hardware.enableAllFirmware = true;
# use systemd-networkd
networking.useDHCP = false;
networking.useNetworkd = true;
# ensure firewall is up
networking.firewall.enable = true;
# swap to RAM
zramSwap.enable = true;
@ -268,11 +273,6 @@ in
services.avahi.enable = true;
services.avahi.nssmdns = true;
# ensure firewall is up
networking.firewall = {
enable = true;
};
# let's get SSD status
services.smartd.enable = true;

View file

@ -20,14 +20,8 @@
swapDevices = [ ];
# 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.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp2s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
# Enables DHCP on the right ethernet interface.
networking.interfaces.enp1s0.useDHCP = true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

View file

@ -25,13 +25,8 @@
swapDevices = [ ];
# 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.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s20f0u6u3.useDHCP = lib.mkDefault true;
# networking.interfaces.enp3s0.useDHCP = lib.mkDefault true;
# Enables DHCP on the right ethernet interface.
networking.interfaces.enp3s0.useDHCP = true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";

View file

@ -25,13 +25,8 @@
swapDevices = [ ];
# 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.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s20f0u4u3.useDHCP = lib.mkDefault true;
# networking.interfaces.enp8s0.useDHCP = lib.mkDefault true;
# Enables DHCP on the right ethernet interface.
networking.interfaces.enp8s0.useDHCP = true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";