Changed Hyprland from Hyprlang to Lua

This commit is contained in:
2026-05-26 23:35:31 +02:00
parent c344fbbe0e
commit 7f0bf6c219
7 changed files with 515 additions and 125 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
{ inputs, pkgs, ... }:
{ pkgs, ... }:
{
imports = [
./hypridle.nix
@@ -19,6 +19,8 @@
systemd.user.targets.hyprland-session.Unit.Wants = [ "xdg-desktop-autostart.target" ];
services.awww.enable = true;
wayland.windowManager.hyprland = {
package = null;
enable = true;
@@ -31,6 +33,6 @@
enableXdgAutostart = false;
};
extraConfig = builtins.readFile ./hyprland.lua;
extraConfig = builtins.readFile ./hyprland-scrolling.lua;
};
}