Files
alo-cluster/home/programs/desktop.nix
2025-10-25 14:05:51 +01:00

19 lines
346 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";
};
};
}