Files
LillyOS/home/hyprland.nix
2026-01-05 06:05:30 +01:00

15 lines
579 B
Nix

{ inputs, pkgs, lib, config, ... }:
let
cfg = config.my.desktop.hyprland;
in
{
programs.kitty.enable = config.my.desktop.enable; # required for the default Hyprland config
wayland.windowManager.hyprland = lib.mkIf cfg.enable {
enable = true;
# set the flake package
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# make sure to also set the portal package, so that they are in sync
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
systemd.enable = true;
};
}