chore(deps): update to nixos 25.11

This commit is contained in:
Guz
2026-01-10 19:34:55 -03:00
parent a817a7139c
commit 0883d28d64
8 changed files with 114 additions and 660 deletions

View File

@@ -62,8 +62,9 @@ in {
home.sessionVariables = {
SHELL = lib.mkIf cfg.zsh.enable "${lib.getExe config.programs.zsh.package}";
TERM = lib.mkIf cfg.ghostty.enable "xterm-ghostty";
TERMINAL = lib.mkIf cfg.ghostty.enable "${lib.getExe config.programs.ghostty.package}";
TERM = lib.mkIf cfg.ghostty.enable "xterm-256color";
# Used to be ghostty, but it is borked
TERMINAL = lib.mkIf cfg.ghostty.enable "${lib.getExe config.programs.wezterm.package}";
EXPLORER = lib.mkIf cfg.yazi.enable "${lib.getExe config.programs.yazi.package}";
};
@@ -107,6 +108,8 @@ in {
package = config._devkit.packages.ghostty;
};
programs.wezterm.enable = true;
## Git
programs.git = lib.mkIf cfg.git.enable {
enable = true;