feat: add hyprland flake input

This commit is contained in:
tux
2025-06-13 20:25:31 +05:30
parent 24d852097f
commit 0a6877722d
5 changed files with 450 additions and 15 deletions

View File

@ -3,7 +3,10 @@
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland-git.hyprland;
portalPackage = pkgs.hyprland-git.xdg-desktop-portal-hyprland;
xwayland.enable = true;
settings = let
# Hyprland
border_size = 2;

View File

@ -1,3 +1,7 @@
{...}: {
programs.hyprland.enable = true;
{pkgs, ...}: {
programs.hyprland = {
enable = true;
package = pkgs.hyprland-git.hyprland;
portalPackage = pkgs.hyprland-git.xdg-desktop-portal-hyprland;
};
}