mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
10 lines
190 B
Nix
10 lines
190 B
Nix
{
|
|
assembleWrapper,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {disableGPU ? false}:
|
|
assembleWrapper "spotify" {
|
|
basePackage = pkgs.spotify;
|
|
flags = [(lib.mkIf disableGPU "--disable-gpu")];
|
|
}
|