This commit is contained in:
2024-04-24 01:19:44 -04:00
parent 67a1223421
commit e0123eae55
6 changed files with 33 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
_1password
_1password-gui
];
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ~/.1password/agent.sock
'';
};
}

View File

@@ -0,0 +1,9 @@
{ pkgs, config, ... }:
{
programs.git = {
enable = true;
userName = "Michael Thomson";
userEmail = "michael@michaelthomson.dev";
};
}