mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
feat: teamspeak my love, why have I ever left
This commit is contained in:
parent
bb03891d1d
commit
36c011b89b
2 changed files with 18 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
||||||
./signal.nix
|
./signal.nix
|
||||||
./theme.nix
|
./theme.nix
|
||||||
./thunderbird.nix
|
./thunderbird.nix
|
||||||
|
./ts3.nix
|
||||||
|
|
||||||
# X11
|
# X11
|
||||||
./i3.nix
|
./i3.nix
|
||||||
|
@ -75,7 +76,6 @@
|
||||||
"Pictures" # config.xdg.userDirs.pictures (infinite recursion)
|
"Pictures" # config.xdg.userDirs.pictures (infinite recursion)
|
||||||
"Videos" # This is where I store clips from gpu-screen-recorder-gtk
|
"Videos" # This is where I store clips from gpu-screen-recorder-gtk
|
||||||
".config/AusweisApp"
|
".config/AusweisApp"
|
||||||
".config/TeamSpeak"
|
|
||||||
".config/obsidian"
|
".config/obsidian"
|
||||||
".config/gpu-screen-recorder"
|
".config/gpu-screen-recorder"
|
||||||
".config/gh"
|
".config/gh"
|
||||||
|
|
17
users/myuser/graphical/ts3.nix
Normal file
17
users/myuser/graphical/ts3.nix
Normal 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"
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue