Regenerated

This commit is contained in:
2026-03-30 13:01:23 +00:00
parent ff98acd620
commit 47553464b7
4 changed files with 288 additions and 392 deletions
+288 -288
View File
File diff suppressed because it is too large Load Diff
@@ -1,31 +0,0 @@
#Load random wallpaper
workspacecreated = exec $HOME/.local/bin/wallpaper-sync-and-set.sh $workspace
# Workspace definitions (modern syntax)
# workspace = 1
# workspace = 2
# workspace = 3
# workspace = 4
# workspace = 5
# Auto-launch apps on specific workspaces (use `exec` with `workspace` rule)
# exec-once = kitty, workspace 1
# exec-once = flatpak run app.betterbird.zen, workspace 2
# exec-once = zen, workspace 3
# Force a specific layout for a workspace
# workspace 1, layout:dwindle
# workspace 2, layout:master
# workspace 3, layout:msg
# Set workspace persistence
# workspace 1, persistent:true
# workspace 2, persistent:true
# Workspace behavior
# workspace {
# cycle_move_empty = no
#}
-26
View File
@@ -1,26 +0,0 @@
# 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
@@ -1,47 +0,0 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
username = config.users.users.defaultUser or "henrov";
generatedZsh = "${flakeRoot}/generated/.config/zsh/.zshrc";
in
{
#################################
# Home Manager Zsh configuration
#################################
_module.args.hmUsers = {
${username} = {
programs.zsh = {
enable = true;
enableCompletion = true;
# autocd = true;
ohMyZsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
# Use ~/.config/zsh as ZDOTDIR
home.sessionVariables = {
ZDOTDIR = "${config.home.homeDirectory}/.config/zsh";
};
# Deploy the generated .zshrc
home.file.".config/zsh/.zshrc".source = generatedZsh;
};
};
}