Advertisement
Guest User

Untitled

a guest
Jun 8th, 2025
33
0
25 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | Source Code | 0 0
  1. { config, pkgs, lib, ... }:
  2.  
  3. {
  4. programs.zsh = {
  5. enable = true;
  6. autosuggestion.enable = true;
  7. syntaxHighlighting.enable = true;
  8. oh-my-zsh.enable = true;
  9. oh-my-zsh.theme = "bureau";
  10. initContent = ''
  11. autoload -Uz add-zsh-hook
  12. unsetopt beep
  13.  
  14. '';
  15. };
  16.  
  17. programs.kitty = {
  18. enable = true;
  19. settings = {
  20. font_family = "FiraCode Nerd Font";
  21. font_size = 14.0;
  22.  
  23. cursor_trail = 10;
  24. cursor_trail_start_threshold = 0;
  25. cursor_trail_decay = "0.01 0.15";
  26. cursor_shape = "block";
  27. cursor_blink = true;
  28.  
  29. confirm_os_window_close = 0;
  30. scrollback_lines = 10000;
  31. hide_window_decorations = 1;
  32.  
  33. enable_audio_bell = false;
  34. bell_on_tab = "none";
  35. };
  36. };
  37.  
  38. programs.foot = {
  39. enable = true;
  40. settings = { main = { font = lib.mkForce "FiraCode Nerd Font:size=14"; }; };
  41. };
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement