Files
alo-cluster/home/programs/desktop.nix
2025-10-28 19:06:47 +00:00

25 lines
545 B
Nix

{ pkgs, ... }:
{
imports = [ ./workstation.nix ];
wayland.windowManager.hyprland = {
enable = true;
settings = {
# Remap CapsLock to Super (Mod4)
"$mod" = "SUPER";
input = {
kb_options = "caps:super";
};
"$browser" = "google-chrome-stable --new-window --ozone-platform=wayland";
};
};
# Extend ghostty configuration from omarchy-nix
programs.ghostty.settings = {
# Automatically handle TERM compatibility for SSH
shell-integration-features = "ssh-env,ssh-terminfo";
};
}