reNixos/hand7s/programs/fuzzel.nix
2025-04-27 12:47:02 +03:00

18 lines
411 B
Nix

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