16 lines
325 B
Nix
16 lines
325 B
Nix
{...}: {
|
|
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
};
|
|
networking = {
|
|
interfaces.enp5s0.wakeOnLan.enable = true;
|
|
hostName = "HACKSTATION";
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
tor-browser
|
|
tor
|
|
];
|
|
};
|
|
}
|