nixos-config/modules/pixiecore/installer.nix
Erwin Boskma 4cd0f83ce8
Some checks failed
/ check (push) Failing after 2m46s
Run nixfmt
2024-02-05 11:46:52 +01:00

29 lines
582 B
Nix

{ nixosSystem }:
nixosSystem {
system = "x86_64-linux";
modules = [
(
{ config, modulesPath, ... }:
{
imports = [
"${modulesPath}/installer/netboot/netboot-minimal.nix"
../../users/root
];
config = {
services.openssh = {
enable = true;
openFirewall = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
system.stateVersion = "24.05";
};
}
)
];
}