mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
13 lines
252 B
Nix
13 lines
252 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;
|
|
}
|