From 05fc8b574c73c4df23170b91297849fba9a62993 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sat, 7 Mar 2026 17:56:53 +0100 Subject: [PATCH] Testing new bindings.nix --- Droidnix/generated/hyprland/keyboard_binds/top.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Droidnix/generated/hyprland/keyboard_binds/top.nix b/Droidnix/generated/hyprland/keyboard_binds/top.nix index e0c0ba0cb..dab88e1b0 100644 --- a/Droidnix/generated/hyprland/keyboard_binds/top.nix +++ b/Droidnix/generated/hyprland/keyboard_binds/top.nix @@ -1,14 +1,16 @@ { config, pkgs, lib, user, inputs, flakeRoot, ... }: let bindingsContent = builtins.readFile (flakeRoot + "/assets/hyprland/conf/bindings.conf"); - configFile = pkgs.writeText "hyprland.conf" bindingsContent; in { - # Home Manager configurations must be nested under the user home-manager.users.${user.username} = { wayland.windowManager.hyprland = { enable = true; - config = configFile; + settings = { + # Include the contents of bindings.conf as raw settings + # This will be merged with other Hyprland settings + $bindingsContent + }; }; }; }