Remove commented config

This commit is contained in:
Rodrigo Arias Mallo 2024-01-17 15:18:27 +01:00
parent 82b8c03966
commit 22de6d8297

View File

@ -4,18 +4,6 @@
#./examples/launchCageOnBoot.nix #./examples/launchCageOnBoot.nix
]; ];
# networking = {
# interfaces."wlan0".useDHCP = true;
# wireless = {
# interfaces = [ "wlan0" ];
# enable = true;
# networks = {
# myWifiNetworkSSID.pskRaw = "29f4be0s82e33c18149cdcfc869f84ce6a8831fb492e35d759468f6103bf8a31"; # pskRaw is the result of running wpa_passphrase 'SSID' 'PASSWORD'
# WIFI_SSID.psk = "WIFI_PASSWORD";
# };
# };
# };
networking.hostName = "visionfive-nix"; networking.hostName = "visionfive-nix";
boot = { boot = {
@ -32,21 +20,4 @@
# Enable ssh on boot # Enable ssh on boot
services.openssh.enable = true; services.openssh.enable = true;
# Open port 19999 for Netdata
#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 = {
# openFirewall = true;
# nssmdns = true; # Allows software to use Avahi to resolve.
# enable = true;
# publish = {
# enable = true;
# addresses = true;
# workstation = true;
# };
#};
} }