Renewed binds

This commit is contained in:
2026-03-07 22:25:49 +01:00
parent 5e6d51f0c2
commit 58ee5b1fd0
@@ -1,14 +1,20 @@
{ config, pkgs, lib, user, inputs, flakeRoot, ... }:
{
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;
extraConfig = bindingsContent;
};
};
}