feat: added themes and other stuff

This commit is contained in:
Nick 2024-12-19 19:56:45 -06:00
parent 951928150e
commit c7b32f0f31
18 changed files with 248 additions and 61 deletions

View file

@ -1,12 +1,15 @@
{
{flake, ...}: let
inherit (flake.config.aesthetics.themes.theme) font;
in {
extraConfig = ''
return {
color_scheme = "Catppuccin Macchiato",
font_size = 10,
font_size = 11,
font = wezterm.font('${font}'),
enable_tab_bar = false,
window_close_confirmation = 'NeverPrompt',
term = 'wezterm',
enable_wayland = false,
enable_wayland = true,
front_end = "WebGpu",
max_fps = 200
}

View file

@ -1,9 +1,9 @@
{
{flake, ...}: {
programs.wezterm = let
configPath = ./config;
in
{
enable = true;
}
// (import (configPath + /extraConfig.nix));
// (import (configPath + /extraConfig.nix) {inherit flake;});
}