mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
23 lines
334 B
Nix
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;
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|