nixos-config/machines/probe/configuration.nix
Ingolf Wagner da5af11569
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 3m22s
nix flake check fixes
2024-07-20 23:33:19 +02:00

18 lines
445 B
Nix

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