From b837ef9a8d0fb923df31a019b4ffe727a7c194c1 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 10 Jul 2025 12:00:48 +0200 Subject: [PATCH] Disable grub theming --- modules/core/stylix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/core/stylix.nix b/modules/core/stylix.nix index 45af481..48e231a 100644 --- a/modules/core/stylix.nix +++ b/modules/core/stylix.nix @@ -7,6 +7,9 @@ stylix = { enable = true; base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; - targets.console.enable = false; + targets = { + console.enable = false; + grub.enable = false; + }; }; }