mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-03-22 20:56:42 +00:00
10 lines
209 B
Nix
10 lines
209 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
withUWSM = true;
|
|
xwayland.enable = true;
|
|
};
|
|
}
|