This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/programs/sway/fuzzel/default.nix

18 lines
243 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: {
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.foot}/bin/foot";
layer = "overlay";
};
colors.background = "ffffffff";
};
};
}