chore(limonka): update config

Use `flake`'s overlays
Enable `git` `LFS`
Re-enable `pinentry-program` in `GPG` config
This commit is contained in:
reo101 2024-01-21 23:43:51 +02:00
parent c57ddea18b
commit b74f10832c
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

@ -9,7 +9,7 @@
# Add custom overlays # Add custom overlays
nixpkgs = { nixpkgs = {
overlays = [ overlays = builtins.attrValues outputs.overlays ++ [
inputs.neovim-nightly-overlay.overlay inputs.neovim-nightly-overlay.overlay
inputs.zig-overlay.overlays.default inputs.zig-overlay.overlays.default
(final: prev: { (final: prev: {
@ -156,6 +156,9 @@
signByDefault = true; signByDefault = true;
key = "675AA7EF13964ACB"; key = "675AA7EF13964ACB";
}; };
lfs = {
enable = true;
};
}; };
home.file.".gnupg/gpg-agent.conf" = { home.file.".gnupg/gpg-agent.conf" = {
@ -164,7 +167,7 @@
max-cache-ttl 86400 max-cache-ttl 86400
default-cache-ttl 86400 default-cache-ttl 86400
enable-ssh-support enable-ssh-support
# pinentry-program ${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac pinentry-program ${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac
# pinentry-program /usr/local/opt/pinentry-touchid/bin/pinentry-touchid # pinentry-program /usr/local/opt/pinentry-touchid/bin/pinentry-touchid
''; '';
}; };