sneeuwvlok/modules/home/application/teamspeak/default.nix
Chris Kruining ca9dc5c8c1
Some checks failed
Test action / kaas (push) Failing after 1s
.
2026-02-01 20:02:08 +01:00

18 lines
367 B
Nix

{ inputs, config, lib, pkgs, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.application.teamspeak;
in
{
options.${namespace}.application.teamspeak = {
enable = mkEnableOption "enable teamspeak";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
# teamspeak3
teamspeak6-client
];
};
}