mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-04-27 15:23:10 +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;
|
||
|
};
|
||
|
}
|