desktop
This commit is contained in:
16
modules/home-manager/1password/default.nix
Normal file
16
modules/home-manager/1password/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
_1password
|
||||
_1password-gui
|
||||
];
|
||||
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ~/.1password/agent.sock
|
||||
'';
|
||||
};
|
||||
}
|
||||
9
modules/home-manager/git/default.nix
Normal file
9
modules/home-manager/git/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Michael Thomson";
|
||||
userEmail = "michael@michaelthomson.dev";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user