nixos-configs/homeConfigurations/muede/fuzzel.nix

19 lines
362 B
Nix
Raw Permalink Normal View History

{ pkgs, lib, ... }:
2025-04-05 11:40:13 +02:00
{
config.programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${lib.getBin pkgs.gnome-console}/bin/kgx";
2025-04-05 11:40:13 +02:00
icon-theme = "Adwaita";
counter = true;
launch-prefix = "niri msg action spawn --";
2025-04-05 11:40:13 +02:00
};
border = {
radius = 30;
width = 3;
};
};
};
}