This commit is contained in:
cln
2026-07-16 16:15:10 +02:00
commit 8d4d3e5d48
407 changed files with 36864 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{ config, lib, pkgs, ...}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
switch = "doas nixos-rebuild switch --flake ~/nixos#cln";
update = "doas nixos-rebuild switch --flake ~/nixos#cln --upgrade";
};
oh-my-zsh = {
enable = true;
plugins = [ "ssh" ];
theme = "agnoster";
};
initContent = ''
pfetch
'';
};
catppuccin.zsh-syntax-highlighting = {
enable = true;
flavor = "mocha";
};
}