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

19 lines
478 B
Nix
Raw Normal View History

2024-04-24 03:40:47 +02:00
{ lib, ... }: {
2023-09-18 04:21:09 +02:00
# Build this image with:
# nix build .#nixosConfigurations.nixos-rpi4-img.config.system.build.sdImage
2023-12-14 13:48:25 +01:00
2023-09-21 04:52:09 +02:00
# nixpkgs.crossSystem.system = "armv7l-linux";
2023-09-16 14:32:14 +02:00
networking.hostName = "nixos-rpi4-img";
networking.firewall.allowedTCPPorts = [ 22 ];
2023-12-13 05:08:29 +01:00
2024-04-28 14:48:11 +02:00
# Allow passworded ssh for setup
2023-12-13 05:08:29 +01:00
services.openssh = {
enable = true;
openFirewall = false;
settings = {
PermitRootLogin = "no";
2023-12-13 05:11:45 +01:00
PasswordAuthentication = lib.mkForce true;
2023-12-13 05:10:46 +01:00
};
2023-12-13 05:08:29 +01:00
};
2024-04-24 03:40:47 +02:00
}