From fe1da6555f0e61d0f123b2f573a3fa70380501f1 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 21 Nov 2022 10:54:22 -0600 Subject: [PATCH] updating readme for kohlin --- README.org | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/README.org b/README.org index 3b7d2c2..b6f9b5f 100644 --- a/README.org +++ b/README.org @@ -1869,38 +1869,34 @@ Kohlin's hardware [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_usb_sdmmc" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/103a24d5-ffb5-4f7c-ab68-48e0b766b3ac"; - fsType = "btrfs"; - options = [ "subvol=@" "noatime" "nodiratime" "compress=zstd" ]; + { device = "/dev/disk/by-uuid/3dc76272-54d9-445e-846f-591cd407b085"; + fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/55C5-7725"; + fileSystems."/boot/efi" = + { device = "/dev/disk/by-uuid/DDA5-32A1"; fsType = "vfat"; }; - fileSystems."/storage" = - { device = "/dev/disk/by-uuid/f1804953-14e5-42db-a974-1e18f16d884c"; - fsType = "btrfs"; - options = [ "noatime" "nodiratime" "compress=zstd" ]; - }; - - swapDevices = [ ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/b25464c5-2268-4963-80cb-6dc51dcba91b"; } + ]; # 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.enp2s0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; + # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + # networking.interfaces.wlo1.useDHCP = lib.mkDefault true; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } #+end_src