mirror of
https://github.com/danth/stylix
synced 2024-11-26 06:00:23 +00:00
cf5be812bd
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>
15 lines
381 B
Nix
15 lines
381 B
Nix
{ 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}" ];
|
|
};
|
|
}];
|
|
}
|