zsh, waybar, dig

This commit is contained in:
smayzy 2025-06-21 10:20:30 +02:00
parent 1e4d4a466d
commit a20d463a17
3 changed files with 17 additions and 1 deletions

View File

@ -48,6 +48,8 @@
packages = with pkgs; [];
};
users.defaultUserShell = pkgs.zsh;
services.xserver.xkb = {
layout = "fr";
variant = "";
@ -87,10 +89,14 @@
wl-clipboard
libnotify
hyprpaper
font-awesome
dig
];
programs.firefox.enable = true;
programs.zsh.enable = true;
programs.nh = {
enable = true;
clean.enable = true;

View File

@ -33,7 +33,7 @@ bind = ,XF86AudioLowerVolume, exec, virt-manager
bind = $mainMod SHIFT, B, exec, killall waybar && waybar &
# Hide waybar
bind = $mainMod, X, exec, killall waybar || waybar &
bind = $mainMod, X, exec, pkill waybar || waybar &
# Clipboard history
bind = $mainMod, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy

View File

@ -58,6 +58,16 @@
EDITOR = "vim";
};
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history.size = 100000;
shellAliases = {
};
};
programs.neovim = {
enable = true;
viAlias = true;