From a4a87bd11e228a2a57bfedd48d3594371cf40329 Mon Sep 17 00:00:00 2001 From: brustybee Date: Fri, 3 Apr 2026 16:51:28 +0530 Subject: noidea im just tryna do something --- common/modules/matugen/default.nix | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'common/modules/matugen/default.nix') diff --git a/common/modules/matugen/default.nix b/common/modules/matugen/default.nix index 79a62b1..de39a06 100644 --- a/common/modules/matugen/default.nix +++ b/common/modules/matugen/default.nix @@ -53,7 +53,7 @@ in }; ghostty = lib.mkIf config.beeMods.terminal.ghostty { template = "ghostty-colors.conf"; - target = "~/.config/ghostty/colors.conf"; + target = "~/.config/ghostty/themes/matugen"; }; zen = { template = "userChrome.css"; @@ -63,10 +63,12 @@ in template = "colors-xresources"; target = "~/.config/x11/matugen.Xresources"; }; - sequences = lib.mkIf (config.beeMods.terminal.default == "foot") { - template = "sequences"; - target = "~/.config/sequences"; - }; + sequences = + lib.mkIf (config.beeMods.terminal.default == "foot" || config.beeMods.terminal.default == "ghostty") + { + template = "sequences"; + target = "~/.config/sequences"; + }; }; }; }; @@ -180,11 +182,14 @@ in output_path = "~/.config/matugen/neovim_matugen.json" ''} - ${lib.optionalString (config.beeMods.terminal.default == "foot") '' - [templates.sequences] - input_path = '~/.config/matugen/templates/sequences' - output_path = '~/.config/wallust/templates/sequences' - ''} + ${lib.optionalString + (config.beeMods.terminal.default == "foot" || config.beeMods.terminal.default == "ghostty") + '' + [templates.sequences] + input_path = '~/.config/matugen/templates/sequences' + output_path = '~/.config/wallust/templates/sequences' + '' + } ${lib.optionalString config.beeMods.bspwm.enable '' [templates.bspwm] -- cgit v1.3.1