nichts/modules/other/git.nix
2024-07-21 13:18:00 +02:00

13 lines
339 B
Nix

{config, ...}: let
inherit (config.modules.other.system) username;
in {
home-manager.users.${username} = {
programs.git = {
signing = {
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPiRe9OH/VtWFWyy5QbAVcN7CLxr4zUtRCwmxD6aeN6";
signByDefault = true;
};
extraConfig.gpg.format = "ssh";
};
};
}