nixos-config/machines/probe/configuration.nix

29 lines
530 B
Nix
Raw Permalink Normal View History

2024-08-29 03:26:04 +02:00
{
lib,
config,
pkgs,
...
}:
{
2024-06-21 22:33:32 +02:00
imports = [
./hardware-configuration
];
2024-07-20 23:33:19 +02:00
system.stateVersion = "24.11";
2024-06-21 22:33:32 +02:00
components.mainUser.enable = true;
2024-06-21 23:25:17 +02:00
components.network.enable = true;
2024-06-21 22:33:32 +02:00
2024-08-08 16:39:50 +02:00
features.boot.ssh.enable = true;
features.boot.tor.enable = true;
2024-08-08 01:12:10 +02:00
components.monitor.enable = false;
2024-06-21 22:33:32 +02:00
networking.hostName = "probe";
2024-08-29 03:26:04 +02:00
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkqVvuJSvRMO5pG2CHNNBxjB7HlJudK4TQs3BhbOWOD"
];
#users.users.root.initialPassword = "admin";
2024-06-21 22:33:32 +02:00
}