home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 9f0ad825694a752e78d26b574b8b9920cd8d9cf1
parent 5d0c9fe39a006c4bc85baac057720959618ab31e
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 10 Nov 2023 11:17:11 +0100

users/vincent: no more spotify wrapping

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Musers/vincent/desktop/spotify.nix | 8++------
1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/users/vincent/desktop/spotify.nix b/users/vincent/desktop/spotify.nix @@ -1,12 +1,8 @@ { pkgs, ... }: -let - my-spotify = pkgs.writeShellScriptBin "spotify" '' - exec ${pkgs.spotify}/bin/spotify --enable-features=UseOzonePlatform --ozone-platform=wayland - ''; -in { + # FIXME: need a .desktop file.. home.packages = [ - my-spotify + spotify ]; }