feat: massive cleanup

This commit is contained in:
Nick 2025-10-13 17:46:29 -05:00
parent 9a9c52064a
commit 556e23fdb4
41 changed files with 1 additions and 589 deletions

View file

@ -1,19 +0,0 @@
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes)
fonts
;
in
''
return {
color_scheme = "Catppuccin Macchiato",
font_size = ${builtins.toString fonts.sizes.terminal},
font = wezterm.font('${fonts.name}'),
enable_tab_bar = false,
window_close_confirmation = 'NeverPrompt',
term = 'wezterm',
enable_wayland = true,
front_end = "WebGpu",
max_fps = 200
}
''

View file

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