feat: more tools
This commit is contained in:
@@ -15,14 +15,45 @@
|
||||
python3
|
||||
nmap
|
||||
file
|
||||
freerdp
|
||||
];
|
||||
|
||||
|
||||
# Set session variables
|
||||
home.sessionVariables = {
|
||||
NIX_BUILD_SHELL = "${pkgs.zsh}/bin/zsh";
|
||||
ZELLIJ_DISABLE_HELP = "1";
|
||||
# --------------------------
|
||||
# | Hyprland Configuration |
|
||||
# --------------------------
|
||||
# Set keybinds
|
||||
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
|
||||
home.file.".zshrc".force = true;
|
||||
|
||||
Reference in New Issue
Block a user