flake/homes/modules/wm/hypr/hyprland.nix

30 lines
695 B
Nix
Raw Normal View History

2025-02-21 18:48:51 +10:00
# NOTE: hyprland must be enabled in BOTH your host config (for running hyprland)
2026-02-24 23:43:16 +10:00
# NOTE: and your home-manager config (for managing hyprland's config files)
{
pkgs,
inputs,
...
}: {
2026-02-24 23:43:16 +10:00
config = {
wayland.windowManager.hyprland = {
enable = true;
2026-02-24 23:43:16 +10:00
# package = pkgs.hyprland;
package = null;
portalPackage = null;
xwayland.enable = true;
2026-02-24 23:43:16 +10:00
# systemd = {
# enable = true;
# # enable autostart of applications
# # REF: `man 8 systemd-xdg-autostart-generator`
# enableXdgAutostart = true;
# };
2026-02-24 23:43:16 +10:00
# plugins = with inputs; [
# split-monitor-workspaces.packages.${pkgs.system}.split
# ];
};
};
}