Commit b3ebacdd89f3

Vincent Demeester <vincent@sbr.pm>
2020-06-05 16:49:12
users/vincent: add spotify to desktop
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 1f880db
Changed files (2)
users
users/vincent/desktop/default.nix
@@ -12,6 +12,7 @@
     ./mpv.nix
     ./mpd.nix
     ./redshift.nix
+    ./spotify.nix
     ./xsession.nix
   ];
   home.sessionVariables = { WEBKIT_DISABLE_COMPOSITING_MODE = 1; };
users/vincent/desktop/spotify.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }:
+
+{
+  home.packages = with pkgs; [ spotify ];
+}