diff --git a/Droidnix/generated/hyprland/keyboard_binds/top.nix b/Droidnix/generated/hyprland/keyboard_binds/top.nix index dab88e1b0..2b0123cfa 100644 --- a/Droidnix/generated/hyprland/keyboard_binds/top.nix +++ b/Droidnix/generated/hyprland/keyboard_binds/top.nix @@ -1,4 +1,12 @@ -{ config, pkgs, lib, user, inputs, flakeRoot, ... }: +{ + config, + pkgs, + lib, + user, + inputs, + flakeRoot, + ... +}: let bindingsContent = builtins.readFile (flakeRoot + "/assets/hyprland/conf/bindings.conf"); in @@ -6,11 +14,8 @@ in home-manager.users.${user.username} = { wayland.windowManager.hyprland = { enable = true; - settings = { - # Include the contents of bindings.conf as raw settings - # This will be merged with other Hyprland settings - $bindingsContent - }; + settings = lib.mkForce { }; + extraConfig = bindingsContent; }; }; }