Regenerated
This commit is contained in:
+408
-337
File diff suppressed because it is too large
Load Diff
+62
-16
@@ -1188,8 +1188,60 @@ in
|
||||
home.file.".config/zsh/.zshrc".source = generatedZsh;
|
||||
};
|
||||
};
|
||||
}
|
||||
#+END_SRC
|
||||
}{ lib, config, pkgs, flakeRoot, ... }:
|
||||
|
||||
let
|
||||
# Use defaultUser or fallback to "henrov"
|
||||
username = config.defaultUser or "henrov";
|
||||
generatedZsh = "${flakeRoot}/generated/.config/zsh/.zshrc";
|
||||
in
|
||||
{
|
||||
#################################
|
||||
# Install Zsh system-wide
|
||||
#################################
|
||||
environment.systemPackages = [
|
||||
pkgs.zsh
|
||||
];
|
||||
|
||||
#################################
|
||||
# Home Manager user configuration
|
||||
#################################
|
||||
home-manager.users = {
|
||||
${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;
|
||||
};
|
||||
};
|
||||
}#+END_SRC
|
||||
|
||||
** =generated/.config/zsh/.zshrc
|
||||
This sets up the zsh in the terminal
|
||||
@@ -2378,26 +2430,20 @@ workspace = 8
|
||||
workspace = 9
|
||||
workspace = 10
|
||||
|
||||
|
||||
# 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
|
||||
workspace 1, layout:master
|
||||
workspace 2, layout:dwindle
|
||||
workspace 3, layout:msg
|
||||
|
||||
# Set workspace persistence
|
||||
# workspace 1, persistent:true
|
||||
# workspace 2, persistent:true
|
||||
workspace 1, persistent:true
|
||||
workspace 2, persistent:true
|
||||
|
||||
|
||||
# Workspace behavior
|
||||
# workspace {
|
||||
# cycle_move_empty = no
|
||||
#}
|
||||
workspace {
|
||||
cycle_move_empty = yes
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
** =generated/modules/traveldroid/desktop/wallpaper.nix=
|
||||
|
||||
@@ -14,23 +14,17 @@ workspace = 8
|
||||
workspace = 9
|
||||
workspace = 10
|
||||
|
||||
|
||||
# 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
|
||||
workspace 1, layout:master
|
||||
workspace 2, layout:dwindle
|
||||
workspace 3, layout:msg
|
||||
|
||||
# Set workspace persistence
|
||||
# workspace 1, persistent:true
|
||||
# workspace 2, persistent:true
|
||||
workspace 1, persistent:true
|
||||
workspace 2, persistent:true
|
||||
|
||||
|
||||
# Workspace behavior
|
||||
# workspace {
|
||||
# cycle_move_empty = no
|
||||
#}
|
||||
workspace {
|
||||
cycle_move_empty = yes
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user