Files
nixos/Droidnix/generated/modules/terminals/zsh.nix
T
2026-03-19 09:32:46 +00:00

78 lines
2.2 KiB
Nix

{ lib, ... }:
let
# --- Program-specific values ---
programName = "zsh";
zshAssets = ../../../assets/system/conf/${programName};
zshFiles = builtins.readDir zshAssets;
files = lib.genAttrs (builtins.attrNames zshFiles) (name: {
src = "${zshAssets}/${name}";
});
# Enable toggle for this program
enableProgram = true;
in
{
# Top-level toggle for this program
options.enableZsh =
lib.mkEnableOption "Enable Zsh terminal with Oh-My-Zsh";
# Configuration applied only if enabled
config = lib.mkIf enableProgram {
myApps = {
zsh = {
enable = true;
assetsDir = zshAssets;
files = files;
# Reference default user
user = config.defaultUser or "henrov";
# 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
];
};
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
'';
};
};
};
}