17 lines
264 B
Nix
17 lines
264 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ./workstation.nix ];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
settings = {
|
|
# Remap CapsLock to Super (Mod4)
|
|
"$mod" = "SUPER";
|
|
|
|
input = {
|
|
kb_options = "caps:super";
|
|
};
|
|
};
|
|
};
|
|
}
|