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