cyclone: Include adb support

This commit is contained in:
Spotlight 2025-03-24 21:56:59 -05:00
parent 8e3419ebb4
commit 5e927576e4
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
2 changed files with 14 additions and 11 deletions

View file

@ -101,12 +101,15 @@
vscode
];
programs.steam.enable = true;
programs = {
adb.enable = true;
steam.enable = true;
};
# Docker support
boot.kernel.sysctl."net.ipv4.ip_forward" = true;
networking.firewall.trustedInterfaces = [ "docker0" ];
users.users.spotlight.extraGroups = [ "docker" ];
users.users.spotlight.extraGroups = [ "adbusers" "docker" ];
virtualisation.docker.enable = true;
# Docker NVIDIA runtime support
hardware.nvidia-container-toolkit.enable = true;