From 22de6d8297919289aa0e50d02399d07cdcf4dacc Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 17 Jan 2024 15:18:27 +0100 Subject: [PATCH] Remove commented config --- configuration.nix | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/configuration.nix b/configuration.nix index 0b00720..699622b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,18 +4,6 @@ #./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"; boot = { @@ -32,21 +20,4 @@ # Enable ssh on boot 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; - # }; - #}; }