{ den, __findFile, modules, ... }: { den.aspects.rpi5 = { includes = [ # ]; nixos = { networking.hostName = "nixos-001-rp5"; fileSystems = { "/" = { device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; fsType = "ext4"; options = ["noatime"]; }; "/boot/firmware" = { device = "/dev/disk/by-uuid/2175-794E"; fsType = "vfat"; options = ["noatime"]; }; }; networking.firewall = { enable = true; allowedTCPPorts = [ 80 443 8080 ]; allowedUDPPortRanges = []; }; virtualisation.docker.enable = true; virtualisation.oci-containers.backend = "docker"; services.openssh.enable = true; nixpkgs.hostPlatform = "aarch64-linux"; nix.gc = { automatic = true; }; }; }; }