diff --git a/home-manager/cli/bat.nix b/home-manager/cli/bat.nix index 46803a1..4eb7354 100644 --- a/home-manager/cli/bat.nix +++ b/home-manager/cli/bat.nix @@ -8,5 +8,6 @@ _:{ programs.zsh.shellAliases = { cat = "bat"; + less = "bat"; }; } diff --git a/hosts/luci/hardware-configuration.nix b/hosts/luci/hardware-configuration.nix index 10066e8..b41ef5e 100644 --- a/hosts/luci/hardware-configuration.nix +++ b/hosts/luci/hardware-configuration.nix @@ -10,7 +10,6 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" "i915" ]; boot.initrd.kernelModules = [ ]; - boot.kernelParams = [ "intel_pstate=disable" ]; boot.kernelModules = [ "kvm-intel" "i915" ]; boot.extraModulePackages = [ ]; @@ -50,6 +49,7 @@ # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.opengl.enable = true; hardware.opengl.driSupport = true;