From 29910ed82a0ad1da381e1b9a7d25aa2be8a0989f Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Wed, 22 Mar 2023 00:28:35 -0400 Subject: [PATCH] Cleaned up comments --- sysConfig/hardware.nix | 3 --- sysConfig/network.nix | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/sysConfig/hardware.nix b/sysConfig/hardware.nix index 24b2ad3..82081a7 100644 --- a/sysConfig/hardware.nix +++ b/sysConfig/hardware.nix @@ -7,7 +7,6 @@ ]; # KERNEL MODULES - boot.initrd.availableKernelModules = [ "vmd" "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "coretemp" ]; @@ -16,7 +15,6 @@ boot.kernelPackages = pkgs.linuxPackages_latest; # FSTAB - fileSystems."/" = { device = "/dev/disk/by-uuid/af24c5b3-8a6e-4333-a61d-922a97928cae"; fsType = "ext4"; @@ -34,7 +32,6 @@ # CPU - powerManagement.cpuFreqGovernor = lib.mkDefault "performance"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/sysConfig/network.nix b/sysConfig/network.nix index 6079eed..432e424 100644 --- a/sysConfig/network.nix +++ b/sysConfig/network.nix @@ -3,10 +3,8 @@ { networking = { - hostName = "socrates"; # Change your hostname - + hostName = "socrates"; useDHCP = lib.mkDefault true; - networkmanager.enable = true; };