nixconf/common/spotify.nix
2024-03-01 16:36:41 +01:00

13 lines
267 B
Nix

{ config, pkgs, inputs, ... }:
{
home.packages = with pkgs; [
(symlinkJoin {
name = "spotify";
paths = [
(writeShellScriptBin "spotify" ''${spotify}/bin/spotify --enable-features=UseOzonePlatform --ozone-platform=wayland'')
spotify
];
})
];
}