Compare commits

...

2 Commits

Author SHA1 Message Date
Sam W 57ca6b2305 pkgs: add dig/whois 2023-08-25 17:05:16 +01:00
Sam W a2cab93005 gpg: ssh support 2023-08-25 17:05:16 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@
# Shouldn't have an effect on macos, on linux we need to specify a pinentry
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryFlavor = "qt"; # for plasma
};
}

View File

@ -15,7 +15,7 @@ with pkgs; rec {
];
# Networking shit
net = [iperf3 nmap socat tcpdump];
net = [dig iperf3 nmap socat tcpdump whois];
# development tools
dev = [jq nixfmt gh glab hexyl];