Files
amazing-dotfiles/modules/hypr/hyprlauncher.nix
2026-03-24 10:40:31 +01:00

23 lines
348 B
Nix

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