30 lines
482 B
Nix
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
|
|
# ]))
|
|
];
|
|
}
|