feat: teamspeak my love, why have I ever left

This commit is contained in:
oddlama 2024-07-11 02:00:12 +02:00
parent bb03891d1d
commit 36c011b89b
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,17 @@
{pkgs, ...}: let
ts3 = pkgs.writeShellApplication {
name = "teamspeak3";
runtimeInputs = [
pkgs.teamspeak_client
];
text = ''
export TS3_CONFIG_DIR=".config/teamspeak3"
exec ts3client
'';
};
in {
home.packages = [ts3];
home.persistence."/persist".directories = [
".config/teamspeak3"
];
}