diff options
Diffstat (limited to 'common/modules/matugen/default.nix')
| -rw-r--r-- | common/modules/matugen/default.nix | 25 |
1 files changed, 15 insertions, 10 deletions
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] |
