9 lines
No EOL
281 B
Nix
9 lines
No EOL
281 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;
|
|
};
|
|
} |