feat(limontozu): update
Add a few more packages Setup GPG as SSH (TODO: abstract away in a module)
This commit is contained in:
parent
ae6e5af098
commit
4c01f10eeb
1 changed files with 54 additions and 11 deletions
|
@ -20,8 +20,13 @@
|
||||||
yabai
|
yabai
|
||||||
skhd
|
skhd
|
||||||
|
|
||||||
|
# Shell
|
||||||
|
btop
|
||||||
|
ripgrep
|
||||||
|
|
||||||
# Neovim
|
# Neovim
|
||||||
neovim
|
neovim
|
||||||
|
fennel-language-server
|
||||||
|
|
||||||
# Dhall
|
# Dhall
|
||||||
dhall
|
dhall
|
||||||
|
@ -31,17 +36,30 @@
|
||||||
rnix-lsp
|
rnix-lsp
|
||||||
nil
|
nil
|
||||||
|
|
||||||
|
# SSH and GPG
|
||||||
|
openssh
|
||||||
|
gnupg
|
||||||
|
pinentry_mac
|
||||||
|
(pass.withExtensions (extensions: with extensions; [
|
||||||
|
pass-otp
|
||||||
|
]))
|
||||||
|
|
||||||
# FMI
|
# FMI
|
||||||
vim-fmi-cli
|
vim-fmi-cli
|
||||||
|
|
||||||
# Zig
|
# Zig
|
||||||
zigpkgs.master
|
zigpkgs.master
|
||||||
inputs.zls-overlay.packages.x86_64-darwin.default
|
inputs.zls-overlay.packages.x86_64-darwin.default
|
||||||
|
|
||||||
|
# Polkadot
|
||||||
|
srtool-cli
|
||||||
|
pest-ide-tools
|
||||||
];
|
];
|
||||||
|
|
||||||
reo101 = {
|
reo101 = {
|
||||||
shell = {
|
shell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
atuin = true;
|
||||||
direnv = true;
|
direnv = true;
|
||||||
zoxide = true;
|
zoxide = true;
|
||||||
};
|
};
|
||||||
|
@ -61,17 +79,42 @@
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "pavelatanasov";
|
userName = "reo101";
|
||||||
userEmail = "pavel.atanasov@limechain.tech";
|
# userEmail = "pavel.atanasov@limechain.tech";
|
||||||
# signing = {
|
userEmail = "pavel.atanasov2001@gmail.com";
|
||||||
# signByDefault = true;
|
signing = {
|
||||||
# key = "0x52F3E1D376F692C0";
|
signByDefault = true;
|
||||||
# };
|
key = "675AA7EF13964ACB";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# services.gpg-agent = {
|
home.file.".gnupg/gpg-agent.conf" = {
|
||||||
# enable = true;
|
text = ''
|
||||||
# defaultCacheTtl = 1800;
|
allow-preset-passphrase
|
||||||
# enableSshSupport = true;
|
max-cache-ttl 86400
|
||||||
# };
|
default-cache-ttl 86400
|
||||||
|
enable-ssh-support
|
||||||
|
# pinentry-program ${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac
|
||||||
|
# pinentry-program /usr/local/opt/pinentry-touchid/bin/pinentry-touchid
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file.".gnupg/sshcontrol" = {
|
||||||
|
text =''
|
||||||
|
CFDE97EDC2FDB2FD27020A084F1E3F40221BAFE7
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.zsh.initExtra = ''
|
||||||
|
# if [ "''${SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
||||||
|
# export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
||||||
|
# fi
|
||||||
|
# if [ -z "$SSH_AUTH_SOCK" ]; then
|
||||||
|
# export SSH_AUTH_SOCK=$(${pkgs.gnupg}/bin/gpgconf --list-dirs agent-ssh-socket)
|
||||||
|
# fi
|
||||||
|
unset SSH_AGENT_PID
|
||||||
|
export SSH_AUTH_SOCK=$(${pkgs.gnupg}/bin/gpgconf --list-dirs agent-ssh-socket)
|
||||||
|
gpg-connect-agent updatestartuptty /bye >/dev/null
|
||||||
|
export GPG_TTY=$(tty)
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue