nix-config/modules/wm/fuzzel/default.nix

16 lines
248 B
Nix

{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.wezterm}/bin/wezterm";
layer = "overlay";
};
colors = {
background = "0f0b15";
};
};
};
}