9 lines
163 B
Nix
9 lines
163 B
Nix
{ pkgs, config, inputs, ... }:
|
|
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
|
};
|
|
}
|