feat: more tools

This commit is contained in:
2025-11-15 22:02:17 -05:00
parent 524eb6ac9f
commit f61e043b1c
+36 -5
View File
@@ -15,14 +15,45 @@
python3 python3
nmap nmap
file file
freerdp
]; ];
# --------------------------
# Set session variables # | Hyprland Configuration |
home.sessionVariables = { # --------------------------
NIX_BUILD_SHELL = "${pkgs.zsh}/bin/zsh"; # Set keybinds
ZELLIJ_DISABLE_HELP = "1"; wayland.windowManager.hyprland = {
enable = true;
settings = {
"$mod" = "SUPER";
bind = [
"$mod, Q, exec, konsole"
"$mod, C, killactive"
"$mod, M, exit"
"$mod, F, exec, firefox"
];
decoration = {
rounding = 10;
blur.enabled = true;
};
};
}; };
# Create hyprpaper config
home.file.".config/hypr/hyprpaper.conf" = {
text = ''
preload = ~/Pictures/background.jpg
wallpaper = eDP-1,~/Pictures/background.jpg
splash = false
'';
force = true;
};
# Run hyprpaper to set wallpaper
wayland.windowManager.hyprland.settings = {
exec-once = [
"hyprpaper"
];
};
# Enable Zsh and configure it # Enable Zsh and configure it
home.file.".zshrc".force = true; home.file.".zshrc".force = true;