1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00
oddlama_nix-config/users/myuser/graphical/ts3.nix
2024-11-26 13:34:55 +01:00

19 lines
345 B
Nix

{ 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"
];
}