feat(gui): add arc toggle specialisation
This commit is contained in:
parent
fb3f09152b
commit
2f91a0d039
|
@ -20,6 +20,11 @@ in {
|
|||
type = with types; enum [ "intel" "amdgpu" "nvidia" "prime" ];
|
||||
description = "type of graphics acceleration used";
|
||||
};
|
||||
arc = mkOption {
|
||||
type = with types; nullOr str;
|
||||
default = null;
|
||||
description = "intel arc PCI ID if installed, enables toggling the arc before boot";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -66,9 +71,21 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
specialisation.withArc = mkIf (cfg.arc != null) {
|
||||
configuration = {
|
||||
global.gui.arc = mkForce null;
|
||||
};
|
||||
};
|
||||
|
||||
boot.initrd.kernelModules =
|
||||
optional amdgpu "amdgpu" ++
|
||||
optional intel "i915";
|
||||
optional intel "i915" ++
|
||||
optional (cfg.arc != null) "vfio-pci";
|
||||
|
||||
boot.extraModprobeConfig = mkIf (cfg.arc != null) ''
|
||||
softdep drm pre: vfio-pci
|
||||
options vfio-pci ids=${cfg.arc}
|
||||
'';
|
||||
|
||||
boot.kernelParams = optional intel "i915.fastboot=1";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue