nixos-config/modules/home-manager/hyprland.nix
2023-04-18 19:27:35 -04:00

9 lines
165 B
Nix

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