13 lines
339 B
Nix
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";
|
|
};
|
|
};
|
|
}
|