Regenerated

This commit is contained in:
2026-03-19 15:35:24 +00:00
parent e379a40132
commit e3807ff477
32 changed files with 57 additions and 1726 deletions
+31 -67
View File
@@ -1258,82 +1258,46 @@ in
** =generated/modules/terminals/zsh.nix=
This sets up the zsh in the terminal
#+BEGIN_SRC nix :tangle generated/modules/terminals/zsh.nix :noweb tangle :mkdirp yes :eval never-html
{ lib, ... }:
{ lib, pkgs, config, ... }:
let
# --- Program-specific paths/assets ---
programName = "zsh";
programName = "zsh";
programAssets = ../../../assets/system/conf/${programName};
programFiles = builtins.readDir programAssets;
files = lib.genAttrs (builtins.attrNames programFiles) (name: {
src = "${programAssets}/${name}";
});
# Read the config file that will be injected into initExtra
zshInitFile = "${programAssets}/zsh.conf";
# Toggle for this module
enableProgram = config.enableZsh or false;
# User reference
username = config.defaultUser or "henrov";
in
{
# Top-level toggle for this program
options.enableZsh =
lib.mkEnableOption "Enable Zsh terminal with Oh-My-Zsh";
# Top-level toggle
options.enableZsh = lib.mkEnableOption "Enable Zsh terminal with Oh-My-Zsh";
# Wrap everything in config if enabled
config = { config, ... }: let
# Enable flag now safely references the toggle option
enableProgram = config.enableZsh or false;
# Only apply configuration if enabled
config = lib.mkIf enableProgram {
# Safe reference to defaultUser inside mkIf
username = config.defaultUser or "henrov";
in lib.mkIf enableProgram {
mySystem = {
zsh = {
enable = true;
assetsDir = programAssets;
files = files;
user = username;
# Install Zsh system-wide
environment.systemPackages = [ pkgs.zsh ];
# Zsh-specific settings
ohMyZsh = {
enable = true;
theme = "catppuccin-mocha";
plugins = [
"git"
"docker"
"direnv"
"zsh-autosuggestions"
"zsh-completions"
"zsh-history-substring-search"
# zsh-syntax-highlighting is sourced in initExtra
];
};
# Enable Zsh + Oh-My-Zsh
programs.zsh.enable = true;
programs.zsh.ohMyZsh.enable = true;
programs.zsh.ohMyZsh.theme = "catppuccin-mocha";
programs.zsh.ohMyZsh.plugins = [
"git"
"docker"
"direnv"
"zsh-autosuggestions"
"zsh-completions"
"zsh-history-substring-search"
];
initExtra = ''
# Catppuccin Mocha colors
local mocha_base="#1E1E2E"
local mocha_surface0="#313244"
local mocha_text="#CDD6F4"
local mocha_lavender="#B4BEFE"
local mocha_blue="#89B4FA"
local mocha_sapphire="#74C7EC"
local mocha_teal="#94D2D5"
local mocha_green="#A6E3A1"
local mocha_yellow="#F9E2AF"
local mocha_peach="#FAB387"
local mocha_maroon="#EBA0AC"
local mocha_red="#F38BA8"
local mocha_mauve="#CBA6F7"
local mocha_pink="#F5E2C7"
local mocha_flamingo="#F2CDCD"
local mocha_rosewater="#F5E0DC"
# Prompt
PROMPT='%{$fg[$mocha_blue]%}%n%{$reset_color%}@%{$fg[$mocha_peach]%}%m%{$reset_color%} %{$fg[$mocha_lavender]%}%~%{$reset_color%} %{$fg[$mocha_red]%}$%{$reset_color%} '
RPROMPT='%{$fg[$mocha_green]%}%T%{$reset_color%}'
# Source zsh-syntax-highlighting if present
if [ -f ${files."zsh-syntax-highlighting".src} ]; then
source ${files."zsh-syntax-highlighting".src}
fi
'';
};
};
# Use the contents of zsh.conf as initExtra
programs.zsh.initExtra = builtins.readFile zshInitFile;
};
}
#+END_SRC