Files
omarchy-nix/modules/home-manager/hyprland.nix
T
2025-06-28 12:27:26 -05:00

12 lines
210 B
Nix

inputs: {
config,
pkgs,
...
}: {
imports = [./hyprland/configuration.nix];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
}