10 lines
282 B
Nix
10 lines
282 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.settings.services.switcheroo = {
|
|
enable = lib.mkEnableOption "enable switcheroo-control for nvidia optimus management";
|
|
};
|
|
|
|
config = lib.mkIf config.settings.services.switcheroo.enable {
|
|
services.switcherooControl.enable = true;
|
|
};
|
|
}
|