nichts/modules/runners/fuzzel/module.nix

21 lines
382 B
Nix
Raw Normal View History

2024-08-20 21:37:28 +02:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
inherit (config.modules.other.system) username;
cfg = config.modules.usrEnv.programs.launchers.fuzzel;
in {
config = {
home-manager.users.${username}.programs.fuzzel = mkIf cfg.enable {
2024-08-20 21:47:59 +02:00
# enable schizo dnklware!
2024-08-20 21:37:28 +02:00
enable = true;
package = pkgs.fuzzel;
settings = {
};
};
};
}