From 761687accbfc322924775ffb0f1b11ce686c9b44 Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Wed, 2 Jul 2025 16:21:47 +0800 Subject: [PATCH] Cleanup --- hardware-configuration/muskduck.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/hardware-configuration/muskduck.nix b/hardware-configuration/muskduck.nix index 367b9e3..d6505f9 100644 --- a/hardware-configuration/muskduck.nix +++ b/hardware-configuration/muskduck.nix @@ -1,7 +1,4 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = @@ -28,13 +25,7 @@ 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..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;