mirror of
https://github.com/danth/stylix
synced 2024-11-24 21:23:24 +00:00
hyprland: add testbed (#611)
There are currently some graphical bugs caused by the VM. [1] [1]: https://github.com/hyprwm/Hyprland/issues/1056 Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
parent
5ab1207b2f
commit
cf5be812bd
2 changed files with 18 additions and 3 deletions
|
@ -142,11 +142,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1724435763,
|
||||
"narHash": "sha256-UNky3lJNGQtUEXT2OY8gMxejakSWPTfWKvpFkpFlAfM=",
|
||||
"lastModified": 1730837930,
|
||||
"narHash": "sha256-0kZL4m+bKBJUBQse0HanewWO0g8hDdCvBhudzxgehqc=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "c2cd2a52e02f1dfa1c88f95abeb89298d46023be",
|
||||
"rev": "2f607e07f3ac7e53541120536708e824acccfaa8",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
15
modules/hyprland/testbed.nix
Normal file
15
modules/hyprland/testbed.nix
Normal file
|
@ -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}" ];
|
||||
};
|
||||
}];
|
||||
}
|
Loading…
Reference in a new issue