bonfire/lib/preconfiguredModules/pack/hyprland.nix

21 lines
334 B
Nix
Raw Normal View History

2024-10-21 23:22:53 +05:00
{
inputs,
hmConfig,
username,
bonLib,
...
}: {
imports = [
../nixos/hyprland.nix
../nixos/hyprland-greetd.nix
];
home-manager.users.${username} = {...}: {
imports = [
(bonLib.injectArgs {inherit hmConfig;})
inputs.ags.homeManagerModules.default
../homeManager/hyprland.nix
];
};
}