mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-14 09:09:45 +00:00
16 lines
245 B
Nix
16 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;
|
||
|
};
|
||
|
};
|
||
|
}
|