nixos-config/machines/probe/configuration.nix

14 lines
329 B
Nix
Raw Normal View History

2024-06-21 22:33:32 +02:00
{ lib, config, pkgs, ... }: {
imports = [
./hardware-configuration
../../components
../../modules
];
components.mainUser.enable = true;
networking.hostName = "probe";
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJkqVvuJSvRMO5pG2CHNNBxjB7HlJudK4TQs3BhbOWOD" ];
}