Added TeamSpeak

This commit is contained in:
2025-08-16 19:28:53 +02:00
parent c3ca6e4370
commit 0dc1ae58fb
20 changed files with 157 additions and 238 deletions

21
modules/bluetooth.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
}
};
}
services.blueman.enable = true; # Graphical Manager
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
extraModules = [ pkgs.pulseaudio-modules-bt ];
}
}

34
modules/docker.nix Normal file
View File

@@ -0,0 +1,34 @@
{ pkgs, ...}:
{
environment.systemPackages = with pkgs; [
# Virtualisation
docker-compose # docker-compose alternative
dive # docker layer viewer
tailscale # Vpn
];
# Virtualisation
virtualisation = {
containers.enable = true;
docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
oci-containers = {
backend = "docker";
containers = {
/*container-name = {
image = "image";
autoStart = true;
ports = [ "127.0.0.1:1234:1234" ];
};*/
};
};
};
}

View File

@@ -5,7 +5,6 @@
# flatpak.enable = true;
# xdg.portals.enable = true;
geoclue2.enable = true;
xserver.enable = true;

View File

@@ -34,6 +34,7 @@
lshw
nvme-cli
smartmontools
bluez
# Graphics
libGL