nix/nixos/hosts/nixos-rpi4-img/default.nix

18 lines
No EOL
502 B
Nix

{ config, lib, pkgs, modulesPath, system, ... }: {
# Build this image with:
# nix build .#nixosConfigurations.nixos-rpi4-img.config.system.build.sdImage
# nixpkgs.crossSystem.system = "armv7l-linux";
networking.hostName = "nixos-rpi4-img";
networking.firewall.allowedTCPPorts = [ 22 ];
# Allow passworded ssh
services.openssh = {
enable = true;
openFirewall = false;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = lib.mkForce true;
};
};
}