mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-04-27 16:33:09 +00:00
8 lines
177 B
Nix
8 lines
177 B
Nix
{ inputs, pkgs, config, username, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
xwayland.enable = true;
|
|
};
|
|
} |