rebuilding minimised nix files

This commit is contained in:
2026-03-02 18:37:24 +01:00
parent 00ec53a3a9
commit 5aa6961baf
2 changed files with 342 additions and 341 deletions
+321 -320
View File
File diff suppressed because it is too large Load Diff
+21 -21
View File
@@ -1,27 +1,27 @@
{ config, pkgs, lib, flakeRoot, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autocd = true;
# Optional but recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh";
oh-my-zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
enable = true;
enableCompletion = true;
autocd = true;
# Recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh";
oh-my-zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
}