mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
28 lines
941 B
Nix
28 lines
941 B
Nix
_: {
|
|
flake.nixosModules.networking = {pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
networkmanagerapplet # NetworkManager control applet
|
|
inetutils # collections of network programs such as telnet
|
|
];
|
|
#networking.Name = "nixos"; # Define your hostname.
|
|
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
# Configure network proxy if necessary
|
|
#networking.proxy.default = "http://user:password@proxy:port/";
|
|
#networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
|
|
# Enable networking
|
|
networking.networkmanager.enable = true;
|
|
|
|
# Enable the OpenSSH daemon.
|
|
# services.openssh.enable = true;
|
|
|
|
# Open ports in the firewall.
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|
# Or disable the firewall altogether.
|
|
networking.firewall.enable = false;
|
|
};
|
|
}
|