mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
18 lines
268 B
Nix
18 lines
268 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
programs = {
|
|
zsh.enable = true;
|
|
gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
# pinentryFlavor = "";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
git
|
|
dig
|
|
traceroute
|
|
];
|
|
}
|