diff --git a/hosts/nas/default.nix b/hosts/nas/default.nix index 276d5a3..dfdc9ae 100644 --- a/hosts/nas/default.nix +++ b/hosts/nas/default.nix @@ -23,7 +23,7 @@ imports = # For now, if applying to other system, swap files [(import ./hardware-configuration.nix)] ++ # Current system hardware config @ /etc/nixos/hardware-configuration.nix #[(import ../../modules/desktop/virtualisation/docker.nix)] ++ # Docker - (import ../../modules/services/nas) ++ # Server Services + #(import ../../modules/services/nas) ++ # Server Services (import ../../modules/hardware); # Hardware devices boot = { # Boot options diff --git a/hosts/nas/hardware-configuration.nix b/hosts/nas/hardware-configuration.nix index 090330e..644713c 100644 --- a/hosts/nas/hardware-configuration.nix +++ b/hosts/nas/hardware-configuration.nix @@ -82,7 +82,7 @@ enable = false; }; interfaces = { - ens18 = { + enp0s31f6 = { useDHCP = true; # For versatility sake, manually edit IP on nm-applet. # ipv4.addresses = [ { # address = "45.142.114.153"; @@ -92,8 +92,8 @@ # address = "2a00:ccc1:101:19D::2"; # prefixLength = 64; # } ]; -# }; -# }; + }; + }; # defaultGateway = "45.142.114.1"; # defaultGateway6 = { # address = "fe80::1"; @@ -102,6 +102,6 @@ # # nameservers = [ "9.9.9.9" "2620:fe::fe" ]; }; - + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }