Skip to content

Commit

Permalink
hyprland: add testbed (#611)
Browse files Browse the repository at this point in the history
There are currently some graphical bugs caused by the VM. [1]

[1]:  hyprwm/Hyprland#1056

Co-authored-by: NAHO <[email protected]>
  • Loading branch information
danth and trueNAHO authored Nov 17, 2024
1 parent 5ab1207 commit cf5be81
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions modules/hyprland/testbed.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{ 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}" ];
};
}];
}

0 comments on commit cf5be81

Please sign in to comment.