ooknet/home/modules/desktop/wayland/compositor/hyprland/extras/hyprshade.nix

13 lines
242 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf;
wayland = config.ooknet.wayland;
in
{
config = mkIf (wayland.compositor == "hyprland") {
home.packages = [ pkgs.hyprshade ];
# TODO: implement hyprshade configuration
};
}