Files
amazing-dotfiles/modules/hypr/hyprlauncher.nix
2026-02-22 20:02:46 +01:00

23 lines
334 B
Nix

{ isNixOS, lib, ... }:
{
services.hyprlauncher = {
enable = true;
package = lib.mkIf (!isNixOS) null;
settings = {
cache.enabled = true;
finders = {
desktop_icons = true;
desktop_launch_prefix = "uwsm app --";
};
general = {
grab_focus = true;
};
};
};
}