mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
feat: refactored home manager
This commit is contained in:
parent
65417d1809
commit
376c1d7b18
511 changed files with 1777 additions and 772 deletions
19
home/modules/gui/apps/terminal/wezterm/config/extraConfig.nix
Executable file
19
home/modules/gui/apps/terminal/wezterm/config/extraConfig.nix
Executable file
|
@ -0,0 +1,19 @@
|
|||
{ flake, ... }:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
font
|
||||
;
|
||||
in
|
||||
''
|
||||
return {
|
||||
color_scheme = "Catppuccin Macchiato",
|
||||
font_size = ${builtins.toString font.size.terminal},
|
||||
font = wezterm.font('${font.name}'),
|
||||
enable_tab_bar = false,
|
||||
window_close_confirmation = 'NeverPrompt',
|
||||
term = 'wezterm',
|
||||
enable_wayland = true,
|
||||
front_end = "WebGpu",
|
||||
max_fps = 200
|
||||
}
|
||||
''
|
16
home/modules/gui/apps/terminal/wezterm/default.nix
Executable file
16
home/modules/gui/apps/terminal/wezterm/default.nix
Executable file
|
@ -0,0 +1,16 @@
|
|||
{ flake, ... }:
|
||||
{
|
||||
programs.wezterm =
|
||||
let
|
||||
configPath = ./config;
|
||||
extraConfigPath = import (configPath + /extraConfig.nix) {
|
||||
inherit
|
||||
flake
|
||||
;
|
||||
};
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
extraConfig = extraConfigPath;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue