my laptops nixos configuration, hopefully less messy this time (but still a lil' messy)
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
125B

  1. { lib, ... }:
  2. {
  3. powerManagement = {
  4. cpuFreqGovernor = lib.mkDefault "powersave";
  5. powertop.enable = true;
  6. };
  7. }