kitty: wrap with nixGL by default

This commit is contained in:
Mel Bourgeois 2024-04-29 19:38:00 -05:00
parent e050ec57f6
commit 1ff6b80294
No known key found for this signature in database
GPG Key ID: 290FCF081AEDB3EC
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ in {
package = mkOption {
type = types.package;
default = pkgs.kitty;
# Kitty fails to run without nixGL on genericLinux
default = (config.lib.nixGL.wrap pkgs.kitty);
defaultText = literalExpression "pkgs.kitty";
description = ''
Kitty package to install.