added docker and tor

This commit is contained in:
2026-07-28 19:21:53 +01:00
parent 4d9e050344
commit 33702f4552

View File

@@ -1,12 +1,15 @@
{
self,
inputs,
...
}: {
flake.nixosModules.hackstationConfiguration = {...}: {
{...}: {
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
virtualisation.docker = {
enable = true;
};
networking = {
interfaces.enp5s0.wakeOnLan.enable = true;
hostName = "HACKSTATION";
};
environment.systemPackages = with pkgs; [
tor-browser
tor
];
};
}