Janky "fix" to make 1pass git/ssh work
This commit is contained in:
parent
782f76ba11
commit
241347b926
3 changed files with 25 additions and 3 deletions
|
@ -1,12 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./packages.nix # home.packages and similar stuff
|
||||
./neovim-flake.nix
|
||||
./ssh.nix
|
||||
./git.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
17
homes/floppydisk/git.nix
Normal file
17
homes/floppydisk/git.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
nixosConfig,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.git = {
|
||||
extraConfig = {
|
||||
init.defaultBranch = "master";
|
||||
gpg.format = "ssh";
|
||||
gpg."ssh".program = "${pkgs._1password-gui}/bin/op-ssh-sign";
|
||||
commit.gpgsign = true;
|
||||
user.signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcwriIE5K8SVewvVdgNvmhtAVvJPtMnNkkS4ETi5YgJ";
|
||||
push.autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -12,6 +12,10 @@ in {
|
|||
programs.ssh = {
|
||||
enable = true;
|
||||
forwardAgent = _1passwordAgent.enable;
|
||||
extraConfig = lib.optionalString _1passwordAgent.enable "IdentityAgent ${_1passwordAgent.path}";
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ~/.1password/agent.sock
|
||||
'';
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue