forked from Shinonome/omarchy-nix
14 lines
253 B
Nix
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;
|
|
|
|
}
|