mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-07-16 22:21:55 +08:00
feat: install keybase, import own public key, enable zsh integration
This commit is contained in:
parent
b81527f802
commit
8d84d8800c
1 changed files with 12 additions and 0 deletions
|
|
@ -2,11 +2,23 @@
|
|||
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";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue