16 lines
317 B
Nix
16 lines
317 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.niksos.desktop.enable && config.niksos.desktop.hyprland;
|
|
in {
|
|
config = lib.mkIf cfg {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
};
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1"; # Makes electron apps use wayland.
|
|
};
|
|
}
|