18 lines
350 B
Nix
18 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";
|
||
|
}
|