nixos-config/machines/probe/configuration.nix
Ingolf Wagner 7a6510a4e6
Some checks are pending
Build all NixOS Configurations / nix build (push) Waiting to run
nix fmt
2024-08-29 08:26:04 +07:00

29 lines
530 B
Nix

{
lib,
config,
pkgs,
...
}:
{
imports = [
./hardware-configuration
];
system.stateVersion = "24.11";
components.mainUser.enable = true;
components.network.enable = true;
features.boot.ssh.enable = true;
features.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";
}