added the fuzzel application launcher

This commit is contained in:
Charlie Root 2024-08-20 21:37:28 +02:00
commit 98e78cfd01
5 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,19 @@
{
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 {
enable = true;
package = pkgs.fuzzel;
settings = {
};
};
};
}