1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00

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

@ -12,6 +12,7 @@
./signal.nix
./theme.nix
./thunderbird.nix
./ts3.nix
# X11
./i3.nix
@ -75,7 +76,6 @@
"Pictures" # config.xdg.userDirs.pictures (infinite recursion)
"Videos" # This is where I store clips from gpu-screen-recorder-gtk
".config/AusweisApp"
".config/TeamSpeak"
".config/obsidian"
".config/gpu-screen-recorder"
".config/gh"

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