2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2014-02-08 10:47:51 -08:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2014-12-20 02:51:24 -08:00
|
|
|
let
|
2015-12-04 13:36:01 -08:00
|
|
|
cfg = config.hardware.bumblebee;
|
|
|
|
|
2014-12-20 02:51:24 -08:00
|
|
|
kernel = config.boot.kernelPackages;
|
2015-12-04 13:36:01 -08:00
|
|
|
|
|
|
|
useNvidia = cfg.driver == "nvidia";
|
|
|
|
|
|
|
|
bumblebee = pkgs.bumblebee.override {
|
|
|
|
inherit useNvidia;
|
|
|
|
useDisplayDevice = cfg.connectDisplay;
|
|
|
|
};
|
|
|
|
|
2017-02-19 23:46:47 -08:00
|
|
|
useBbswitch = cfg.pmMethod == "bbswitch" || cfg.pmMethod == "auto" && useNvidia;
|
2016-11-21 15:33:39 -08:00
|
|
|
|
2015-12-04 13:36:01 -08:00
|
|
|
primus = pkgs.primus.override {
|
|
|
|
inherit useNvidia;
|
|
|
|
};
|
2014-12-20 02:51:24 -08:00
|
|
|
|
|
|
|
in
|
2014-02-08 10:47:51 -08:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
2016-11-21 06:16:35 -08:00
|
|
|
hardware.bumblebee = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Enable the bumblebee daemon to manage Optimus hybrid video cards.
|
|
|
|
This should power off secondary GPU until its use is requested
|
|
|
|
by running an application with optirun.
|
|
|
|
'';
|
|
|
|
};
|
2015-12-04 13:36:01 -08:00
|
|
|
|
2016-11-21 06:16:35 -08:00
|
|
|
group = mkOption {
|
|
|
|
default = "wheel";
|
|
|
|
example = "video";
|
|
|
|
type = types.str;
|
2021-01-24 01:19:10 -08:00
|
|
|
description = "Group for bumblebee socket";
|
2016-11-21 06:16:35 -08:00
|
|
|
};
|
2014-12-20 02:51:24 -08:00
|
|
|
|
2016-11-21 06:16:35 -08:00
|
|
|
connectDisplay = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Set to true if you intend to connect your discrete card to a
|
|
|
|
monitor. This option will set up your Nvidia card for EDID
|
|
|
|
discovery and to turn on the monitor signal.
|
|
|
|
|
|
|
|
Only nvidia driver is supported so far.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
driver = mkOption {
|
|
|
|
default = "nvidia";
|
|
|
|
type = types.enum [ "nvidia" "nouveau" ];
|
|
|
|
description = ''
|
|
|
|
Set driver used by bumblebeed. Supported are nouveau and nvidia.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-11-21 15:33:39 -08:00
|
|
|
pmMethod = mkOption {
|
|
|
|
default = "auto";
|
2017-02-19 23:46:47 -08:00
|
|
|
type = types.enum [ "auto" "bbswitch" "switcheroo" "none" ];
|
2016-11-21 06:16:35 -08:00
|
|
|
description = ''
|
2016-11-21 15:33:39 -08:00
|
|
|
Set preferred power management method for unused card.
|
2016-11-21 06:16:35 -08:00
|
|
|
'';
|
|
|
|
};
|
2015-12-04 13:36:01 -08:00
|
|
|
|
|
|
|
};
|
2014-02-08 10:47:51 -08:00
|
|
|
};
|
|
|
|
|
2016-11-21 06:16:35 -08:00
|
|
|
config = mkIf cfg.enable {
|
2016-11-08 07:18:42 -08:00
|
|
|
boot.blacklistedKernelModules = [ "nvidia-drm" "nvidia" "nouveau" ];
|
2017-02-04 01:31:40 -08:00
|
|
|
boot.kernelModules = optional useBbswitch "bbswitch";
|
2017-01-29 13:29:39 -08:00
|
|
|
boot.extraModulePackages = optional useBbswitch kernel.bbswitch ++ optional useNvidia kernel.nvidia_x11.bin;
|
2014-02-08 10:47:51 -08:00
|
|
|
|
2015-12-04 13:36:01 -08:00
|
|
|
environment.systemPackages = [ bumblebee primus ];
|
2014-02-08 10:47:51 -08:00
|
|
|
|
|
|
|
systemd.services.bumblebeed = {
|
|
|
|
description = "Bumblebee Hybrid Graphics Switcher";
|
2016-11-21 06:16:22 -08:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
before = [ "display-manager.service" ];
|
2014-02-08 10:47:51 -08:00
|
|
|
serviceConfig = {
|
2016-11-21 15:33:39 -08:00
|
|
|
ExecStart = "${bumblebee}/bin/bumblebeed --use-syslog -g ${cfg.group} --driver ${cfg.driver} --pm-method ${cfg.pmMethod}";
|
2014-02-08 10:47:51 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|