nix/moduler/network.nix
2025-11-17 21:28:37 +01:00

34 lines
546 B
Nix

# This is your system's configuration file.
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{
inputs,
lib,
config,
pkgs,
myhostname,
...
}:
{
services.netbird = {
enable = true;
ui.enable = true;
};
environment.systemPackages = with pkgs; [
networkmanagerapplet
networkmanager
iperf3
dnsutils
aria2
nmap
ipcalc
# openvpn
# openssh
# wireguard-tools
# (octodns.withProviders (ps: [
# octodns-providers.gandi
# ]))
];
}