Commit 9f0ad825694a

Vincent Demeester <vincent@sbr.pm>
2023-11-10 11:17:11
users/vincent: no more spotify wrapping
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 5d0c9fe
Changed files (1)
users
vincent
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
   ];
 }