Set darkmode as default

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-05-23 13:18:03 +02:00
parent 44e6342c6c
commit 55203bfcc2

View File

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