reNixos/hand7s/programs/fuzzel.nix
s0me1newithhand7s 5dab6c5e28
hand7s: fmt
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-06-13 13:13:26 +03:00

22 lines
429 B
Nix

{
pkgs,
lib,
...
}: {
programs = {
fuzzel = {
settings = {
main = {
terminal = "${lib.getExe pkgs.ghostty}";
layer = "overlay";
prompt = " > ";
};
border = {
width = "2";
radius = "10";
};
};
};
};
}