9 lines
168 B
Nix
9 lines
168 B
Nix
{ pkgs }:
|
|
|
|
with pkgs;
|
|
let shared-packages = import ../shared/packages.nix { inherit pkgs; }; in
|
|
shared-packages ++ [
|
|
# Encryption and security tools
|
|
pinentry_mac
|
|
]
|