hyprland.nix: upstreaming changes (flake -> renixos)

Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
s0me1newithhand7s 2025-10-18 13:56:28 +03:00
parent 9e1f4a57a7
commit 7adcb523c4
No known key found for this signature in database

View file

@ -13,6 +13,9 @@
) )
true; true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
systemd = { systemd = {
enable = true; enable = true;
enableXdgAutostart = true; enableXdgAutostart = true;
@ -103,11 +106,12 @@
}; };
}; };
exec-once = [ execr-once = [
"${lib.getExe' pkgs.systemd "systemctl"} --user start hyprpaper.service" "${lib.getExe' pkgs.systemd "systemctl"} --user start hyprpaper.service"
"${lib.getExe' pkgs.systemd "systemctl"} --user start hypridle.service" "${lib.getExe' pkgs.systemd "systemctl"} --user start hypridle.service"
"${lib.getExe' pkgs.systemd "systemctl"} --user start hyprpolkitagent.service" "${lib.getExe' pkgs.systemd "systemctl"} --user start hyprpolkitagent.service"
"${lib.getExe' pkgs.systemd "systemctl"} --user start hyprpanel.service" "${lib.getExe' pkgs.systemd "systemctl"} --user start noctalis.service"
"${lib.getExe' pkgs.hyprland "hyprctl"} setcursor material_light_cursors 20"
]; ];
bind = [ bind = [
@ -268,14 +272,12 @@
}; };
}; };
plugins = with inputs; [ plugins = [
hyprsplit.packages.${pkgs.system}.split-monitor-workspaces pkgs.hyprlandPlugins.hypr-dynamic-cursors
hyprcurs.packages.${pkgs.system}.hypr-dynamic-cursors pkgs.hyprlandPlugins.xtra-dispatchers
hypremot.packages.${pkgs.system}.hyprland-easymotion pkgs.hyprlandPlugins.hyprwinwrap
hyprplugs.packages.${pkgs.system}.xtra-dispatchers pkgs.hyprlandPlugins.hyprgrass
hyprplugs.packages.${pkgs.system}.hyprwinwrap pkgs.hyprlandPlugins.hyprscrolling
hyprspace.packages.${pkgs.system}.Hyprspace
hyprgrass.packages.${pkgs.system}.hyprgrass
]; ];
}; };
}; };