feat(gtk): force dark color scheme for ryu device

This commit is contained in:
uttarayan21
2025-12-06 03:36:58 +05:30
parent 7dcb0df9b8
commit 0b1924359e
4 changed files with 9 additions and 4 deletions

View File

@@ -8,11 +8,13 @@ lib.optionalAttrs (device.is "ryu") {
xdg.portal = {
enable = pkgs.stdenv.isLinux;
config = {
hyprland.default = ["hyprland" "kde"];
hyprland.default = ["kde" "hyprland"];
common.default = ["*" "hyprland"];
};
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
kdePackages.xdg-desktop-portal-kde
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
};
}