14 lines
400 B
Nix
14 lines
400 B
Nix
{ pkgs, config, lib, ...}:
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
bind = SUPER, Return, exec, alacritty
|
|
bind = CONTROL_SHIFT, W, exec, firefox
|
|
bind = SUPER, colon, exec, rofi -show drun
|
|
exec-once=waybar
|
|
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
|
exec-once=mako
|
|
'';
|
|
};
|
|
}
|