nixos/modules/features/tiling/fuzzel.nix
KnightArtorias 5a27bcf255 It builds
2026-05-20 01:37:16 +00:00

15 lines
302 B
Nix

{
flake.nixosModules.fuzzel = { pkgs, ... }: {
services.mako = {
enable = true;
settings = {
default-timeout = 10000;
font = "Maple Mono";
background-color = "#8F56E1";
text-color = "#D8CAB8";
border-color = "#D8CAB8";
};
};
};
}