nixos-config/machines/probe/configuration.nix
Ingolf Wagner 8327f1860d
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m28s
made tor work
2024-08-08 01:12:10 +02:00

24 lines
610 B
Nix

{ lib, config, pkgs, ... }: {
imports = [
./hardware-configuration
../../components
../../modules
];
system.stateVersion = "24.11";
components.mainUser.enable = true;
components.network.enable = true;
components.nixos.boot.enable = true;
components.nixos.boot.ssh.enable = true;
components.nixos.boot.tor.enable = true;
components.monitor.enable = false;
networking.hostName = "probe";
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkqVvuJSvRMO5pG2CHNNBxjB7HlJudK4TQs3BhbOWOD" ];
#users.users.root.initialPassword = "admin";
}