debugging

This commit is contained in:
2026-03-03 01:15:52 +01:00
parent 0634385f81
commit cafb583c61
9 changed files with 67 additions and 5 deletions

12
modules/base/zsh/zsh.nix Normal file
View File

@@ -0,0 +1,12 @@
{ ... }: {
flake.nixosModules.zsh = {pkgs, ... }:{
programs.zsh.enable = true;
programs.zsh.enableCompletion = true;
programs.zsh.syntaxHighlighting.enable = true;
programs.zsh.autosuggestions.enable = true;
programs.zsh.autosuggestions.async = true;
programs.zsh.ohMyZsh.enable = true;
programs.zsh.ohMyZsh.theme = "agnoster";
users.defaultUserShell = pkgs.zsh;
};
}