Remove warnings

This commit is contained in:
muon 2026-04-13 10:42:58 +00:00
parent fdb7391a32
commit 469b1f78b4
8 changed files with 15 additions and 5 deletions

View file

@ -1,6 +1,7 @@
{
pkgs,
lib,
config,
osConfig,
...
}: let
@ -19,4 +20,7 @@ in {
mods.hyprland.enable = lib.mkIf cfg.wayland.enable true;
mods.i3.enable = lib.mkIf osConfig.services.xserver.windowManager.i3.enable true;
# Silence stateVersion < 26.05 deprecation warnings by pinning the old defaults.
gtk.gtk4.theme = lib.mkDefault config.gtk.theme;
}