mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 20:09:07 +01:00
12 lines
277 B
Nix
12 lines
277 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.custom.programs.hyprland.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.custom.programs.hyprland.enable {
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
package = null;
|
|
portalPackage = null;
|
|
};
|
|
};
|
|
}
|