13 lines
No EOL
262 B
Nix
13 lines
No EOL
262 B
Nix
|
|
{ modulesPath, config, pkgs, lib, self, ... }:
|
|
|
|
{
|
|
networking = {
|
|
hostName = "katana"; # Define your hostname.
|
|
networkmanager.enable = true; #Enable Network Manager
|
|
firewall = {
|
|
allowedTCPPorts = [];
|
|
allowedUDPPorts = [];
|
|
};
|
|
};
|
|
} |