nixos-config/wrappers/spotify.nix

10 lines
190 B
Nix

{
assembleWrapper,
pkgs,
lib,
...
}: {disableGPU ? false}:
assembleWrapper "spotify" {
basePackage = pkgs.spotify;
flags = [(lib.mkIf disableGPU "--disable-gpu")];
}