Files
nixos/Droidnix/generated/hyprland/keyboard_binds/top.nix
T
2026-03-07 22:25:49 +01:00

21 lines
320 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;
extraConfig = bindingsContent;
};
};
}