stylix/modules/hyprland/testbed.nix

16 lines
381 B
Nix
Raw Permalink Normal View History

2024-12-24 16:04:27 +01:00
{ lib, pkgs, ... }:
{
environment.loginShellInit = lib.getExe pkgs.hyprland;
programs.hyprland.enable = true;
home-manager.sharedModules = [{
wayland.windowManager.hyprland = {
enable = true;
# We need something to open a window so that we can check the window borders
settings.bind = [ "ALT, RETURN, exec, ${lib.getExe pkgs.foot}" ];
};
}];
}