-
-
Notifications
You must be signed in to change notification settings - Fork 663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for ga403 #1255
base: master
Are you sure you want to change the base?
Adding support for ga403 #1255
Conversation
I apologize for the silly mistakes |
boot = { | ||
# Note: it seems being on the latest kernel is important for CPPC to work, which is required for the amd_pstate | ||
# https://bugzilla.kernel.org/show_bug.cgi?id=218686 | ||
kernelPackages = mkDefault pkgs.linuxPackages_latest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please set a minimum kernel version instead:
kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.X") pkgs.linuxPackages_latest;
Replace x
with the kernel version that works for you. In doubt the current latest kernel version if you don't want to test others.
# https://wiki.archlinux.org/title/Iwd#iwd_keeps_roaming | ||
# | ||
# But NixOS doesn't have the tweaks for IWD, yet. | ||
networking.wireless.iwd.settings = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was copied from a different module. Can you move this to a common module?
Please undraft when you are ready. |
Description of changes
Things done
nixos-hardware
andimporting it via
<nixos-hardware>
or Flake input