-
-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There are currently some graphical bugs caused by the VM. [1] [1]: hyprwm/Hyprland#1056 Co-authored-by: NAHO <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" ]; | ||
}; | ||
}]; | ||
} |