summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-01-31 12:40:48 -0500
committerSeth Flynn <[email protected]>2025-01-31 12:40:48 -0500
commit53bf1a6745b391c29f2f5b90140521521aca8d81 (patch)
tree072ebe83759081a56adb36f69e68bfdf56b2b714 /users
parenta99bddd12cf7e66c27425d47f0ad5557ecab147a (diff)
seth: don't force wayland on spotify
Diffstat (limited to 'users')
-rw-r--r--users/seth/desktop/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/users/seth/desktop/default.nix b/users/seth/desktop/default.nix
index 59203ef..0149000 100644
--- a/users/seth/desktop/default.nix
+++ b/users/seth/desktop/default.nix
@@ -35,7 +35,12 @@ in
pkgs.prismlauncher
- pkgs.spotify
+ (pkgs.spotify.overrideAttrs {
+ # Spotify doesn't work well on Wayland natively. Don't force it
+ preFixup = ''
+ gappsWrapperArgs+=(--unset NIXOS_OZONE_WL)
+ '';
+ })
];
programs.ghostty.enable = true;