Added lots of sops

This commit is contained in:
fwastring 2025-09-13 22:02:42 +02:00
parent 84bec55415
commit 01c04cd91c
25 changed files with 532 additions and 183 deletions

View file

@ -7,27 +7,32 @@
pkgs,
myhostname,
...
}: {
}:
{
services.netbird = {
enable = true;
ui.enable = true;
};
services.netbird = {
enable = true;
ui.enable = true;
};
environment.systemPackages = with pkgs; [
openvpn
networkmanagerapplet
wireguard-tools
networkmanager
openssh
environment.systemPackages = with pkgs; [
openvpn
networkmanagerapplet
wireguard-tools
networkmanager
openssh
mtr # A network diagnostic tool
iperf3
dnsutils # `dig` + `nslookup`
ldns # replacement of `dig`, it provide the command `drill`
aria2 # A lightweight multi-protocol & multi-source command-line download utility
socat # replacement of openbsd-netcat
nmap # A utility for network discovery and security auditing
ipcalc # it is a calculator for the IPv4/v6 addresses
];
(octodns.withProviders (ps: [
octodns-providers.gandi
]))
mtr # A network diagnostic tool
iperf3
dnsutils # `dig` + `nslookup`
ldns # replacement of `dig`, it provide the command `drill`
aria2 # A lightweight multi-protocol & multi-source command-line download utility
socat # replacement of openbsd-netcat
nmap # A utility for network discovery and security auditing
ipcalc # it is a calculator for the IPv4/v6 addresses
];
}