NiksOS/home/wayland/fuzzel.nix
2025-07-10 20:03:29 +02:00

17 lines
323 B
Nix

{
osConfig,
pkgs,
lib,
...
}: let
inherit (lib) getExe;
in {
programs.fuzzel = {
enable = false; #NOTE: Fuzzel is disabled.
# inherit (osConfig.programs.hyprland) enable;
settings.main = {
launch-prefix = "${lib.getExe pkgs.uwsm} app --";
terminal = "${getExe pkgs.foot}";
};
};
}