mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-07-16 22:21:55 +08:00
24 lines
549 B
Nix
24 lines
549 B
Nix
{
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
services.keybase.enable = true;
|
|
|
|
programs.gpg = {
|
|
enable = true;
|
|
mutableKeys = false;
|
|
mutableTrust = false;
|
|
publicKeys = [
|
|
{
|
|
source = builtins.fetchurl {
|
|
url = "https://keybase.io/livtown/pgp_keys.asc?fingerprint=2c565233f609450e109249c4b7e0db563fd1f754";
|
|
sha256 = "sha256-xsR6Mm5OqVLBOJB89939t7Db2Y/wBzu4Raad6O174QM=";
|
|
};
|
|
trust = "ultimate";
|
|
}
|
|
];
|
|
};
|
|
}
|