summaryrefslogtreecommitdiff
path: root/modules/scx.nix
blob: b1f5dad0db1545fc184ce647988281bc452aaf06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{
  services.scx = {
    enable = true;

    scheduler = "scx_lavd";
    extraArgs =[
      ''
      --performance
      ''
    ];
  };
}