nixos/hosts/isengard.nix
2025-12-19 16:33:40 +01:00

26 lines
570 B
Nix

{ config, pkgs, myUser, release, ... }:
{
networking.hostName = "isengard";
time.timeZone = "Europe/Bucharest";
users.users.myUser = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOiNyGO4RAxSdxvn2ZIBZ2Ze4iVVMrBNmu/V9JO70PoT victor@battleship"
];
};
networking.useDHCP = true;
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
system.stateVersion = release;
}