nixos-config/modules/home-manager/hyprland.nix

10 lines
210 B
Nix

{ pkgs, config, lib, ...}:
{
wayland.windowManager.hyprland = {
enable = true;
extraConfig = ''
bind = SUPER, Return, exec, alacritty
bind = CONTROL_SHIFT, W, exec, firefox
'';
};
}