Just a clean up of commented out code that wasn't doing anything
6BVANT5SRIVGM3ZIUN3SKR5CHZN5VVC7W3FQVJPQN3ZFRBFY5ZLQC
# Firefox nightly overlay
# nixpkgs.overlays =
# let
# moz-rev = "master";
# moz-url = builtins.fetchTarball { url = "https://github.com/mozilla/nixpkgs-mozilla/archive/${moz-rev}.tar.gz";};
# nightlyOverlay = (import "${moz-url}/firefox-overlay.nix");
# in [
# nightlyOverlay
# (import "${fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz"}/overlay.nix")
# ];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# latest.firefox-nightly-bin
];
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
# passwordAuthentication = false; # default true
# permitRootLogin = "yes";
# challengeResponseAuthentication = false;
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;