nichts/modules/programs/launchers/fuzzel/module.nix

30 lines
674 B
Nix
Raw Normal View History

2024-08-27 20:20:12 +02:00
{
config,
lib,
pkgs,
...
2024-08-27 20:20:12 +02:00
}: let
inherit (lib) mkIf;
inherit (config.modules.other.system) username;
cfg = config.modules.usrEnv.programs.launchers.fuzzel;
in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.fuzzel = {
enable = true;
package = pkgs.fuzzel;
settings = {
main = {
terminal = "${pkgs.foot}/bin/foot -e";
# make fuzzel appear on fullscreen windows
layer = "overlay";
icon-theme = "Papirus-Dark";
2024-09-03 21:45:27 +02:00
font = "Lexend:weight=regular:size=14";
};
# background = "000000";
2024-08-27 20:20:12 +02:00
};
};
};
};
}