diff --git a/modules/hosts/HACKSTATION/hackstationConfiguration.nix b/modules/hosts/HACKSTATION/hackstationConfiguration.nix index d847d3f..2250aa1 100644 --- a/modules/hosts/HACKSTATION/hackstationConfiguration.nix +++ b/modules/hosts/HACKSTATION/hackstationConfiguration.nix @@ -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 + ]; }; }