Files
nixos/modules/hosts/HACKSTATION/hackstationConfiguration.nix
2026-07-28 19:21:53 +01:00

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
];
};
}