1
0
Fork 0
nix-config/modules/home/apps/chatterino/default.nix
Philipp 39fb8c64dc
add chatterino, plasma-config, kitty, runelite, eza
fix formatting, fix btrfs being enabled by default update flake
2025-02-08 23:19:59 +01:00

22 lines
340 B
Nix

{
config,
lib,
pkgs,
namespace,
...
}:
with lib;
with lib.${namespace};
let
cfg = config.${namespace}.apps.chatterino;
in
{
options.${namespace}.apps.chatterino = with types; {
enable = mkBoolOpt false "Whether or not to enable kitty.";
};
config = mkIf cfg.enable {
home.packages = [ pkgs.chatterino2 ];
};
}