hackens-org-configurations/machines/agb02/_configuration.nix
2024-10-10 15:58:45 +02:00

17 lines
350 B
Nix

{ config, pkgs, lib, modulesPath, ... }:
{
imports = [
"${modulesPath}/installer/sd-card/sd-image-aarch64.nix"
];
sdImage.compressImage = false;
services = {
getty.autologinUser = "root";
openssh.enable = true;
};
networking.hostName = "agb02";
networking.networkmanager.enable = true;
system.stateVersion = "24.11";
}