Files
nixos/Droidnix/generated/hyprland/keyboard_binds/top.nix
T
2026-03-07 17:56:53 +01:00

17 lines
445 B
Nix

{ config, pkgs, lib, user, inputs, flakeRoot, ... }:
let
bindingsContent = builtins.readFile (flakeRoot + "/assets/hyprland/conf/bindings.conf");
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
};
};
};
}