Files
Nina Chlóe Kassandra Reiß dd9cc465cd Fix darkmode
2026-05-23 13:28:41 +02:00

20 lines
297 B
Nix

{ pkgs, ... }:
{
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
];
config.common.default = "*";
};
home.sessionVariables = {
GTK_THEME = "Adwaita:dark";
COLORSCHEME = "prefer-dark";
};
}