Files
omarchy-nix/modules/home-manager/hyprland.nix
T
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

15 lines
254 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;
}