17 lines
445 B
Nix
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
|
|
};
|
|
};
|
|
};
|
|
}
|