nixos-riscv/configuration.nix

15 lines
367 B
Nix
Raw Normal View History

2022-06-25 17:37:18 +02:00
{
networking.hostName = "visionfive-nix";
# Enable ssh on boot
services.openssh.enable = true;
# Open port 19999 for Netdata
2022-06-25 17:37:18 +02:00
networking.firewall.allowedTCPPorts = [ 19999 ];
services.netdata.enable = true;
# Enable Avahi mDNS, you should be able to reach http://visionfive-nix:19999
# to reach netdata when booted
services.avahi.enable = true;
2022-06-25 17:37:18 +02:00
}