nix/moduler/network.nix
2025-11-23 12:31:06 +01:00

30 lines
482 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,
...
}:
{
services.netbird = {
enable = true;
ui.enable = true;
};
environment.systemPackages = with pkgs; [
networkmanagerapplet
networkmanager
iperf3
dnsutils
aria2
nmap
ipcalc
# (octodns.withProviders (ps: [
# octodns-providers.gandi
# ]))
];
}