13 lines
267 B
Nix
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
|
|
];
|
|
})
|
|
];
|
|
}
|