diff options
| author | brustybee <beebeeb5k@gmail.com> | 2026-04-03 16:51:28 +0530 |
|---|---|---|
| committer | brustybee <beebeeb5k@gmail.com> | 2026-04-03 16:51:28 +0530 |
| commit | a4a87bd11e228a2a57bfedd48d3594371cf40329 (patch) | |
| tree | 97d7f6e0380afd57fec26cbbb36e4671f7b19e81 /common/modules/matugen/default.nix | |
| parent | 1c53159c5af290a3d90376c5375af602ac55c94a (diff) | |
noidea im just tryna do something
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] |
