mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-12 16:39:44 +00:00
15 lines
245 B
Nix
15 lines
245 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options = {
|
|
hyprland.enable = lib.mkEnableOption "enable hyprland";
|
|
};
|
|
config = lib.mkIf config.hyprland.enable {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
};
|
|
}
|