Cleaned up comments

This commit is contained in:
Bryan Ramos 2023-03-22 00:28:35 -04:00
parent 4870b68b9a
commit 29910ed82a
2 changed files with 1 additions and 6 deletions

View file

@ -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;
}

View file

@ -3,10 +3,8 @@
{
networking = {
hostName = "socrates"; # Change your hostname
hostName = "socrates";
useDHCP = lib.mkDefault true;
networkmanager.enable = true;
};