Files
omarchy-nix/modules/home-manager/hyprland.nix
T
2025-07-04 12:10:39 -05:00

14 lines
253 B
Nix

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