8 lines
159 B
Nix
8 lines
159 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
};
|
|
}
|