diff options
author | polwex <polwex@sortug.com> | 2024-10-06 20:07:07 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-10-06 20:07:07 +0700 |
commit | 8d6ba07563abc02b498d31307eecd7463ce65e39 (patch) | |
tree | acec26a38ad9210c60040d9cdfefa46207f78e5e /hosts/local/master/configuration.nix | |
parent | 3a8f180df3cb9c336ff4304be4b3ca365215ba60 (diff) | |
parent | 27ed56803e8075c97a5beddc648f3b1239fd015d (diff) |
m
Diffstat (limited to 'hosts/local/master/configuration.nix')
-rw-r--r-- | hosts/local/master/configuration.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/hosts/local/master/configuration.nix b/hosts/local/master/configuration.nix index a0f8475..712d15c 100644 --- a/hosts/local/master/configuration.nix +++ b/hosts/local/master/configuration.nix @@ -6,18 +6,19 @@ # Include the results of the hardware scan. ../../base.nix ../../linux.nix - ../../unfree.nix + # ../../unfree.nix #../../android.nix - ../i3.nix + # ../i3.nix # ../gnome.nix # ../wayland.nix ../nvidia.nix - ./keyboard.nix + ./keyboard.nix ]; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelParams = ["intel_pstate=active"]; # boot.supportedFilesystems = ["ntfs"]; services.fprintd.enable = true; @@ -44,8 +45,8 @@ system.stateVersion = "23.11"; # Did you read the comment? #debugging segfaults - powerManagement.cpufreq.max = 4000000; - powerManagement.cpufreq.min = 800000; + # powerManagement.cpufreq.max = 4000000; + # powerManagement.cpufreq.min = 800000; # Define the systemd service # systemd.services.my-custom-script = { |