21 lines
320 B
Nix
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;
|
|
};
|
|
};
|
|
}
|