46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{
|
|
user ? throw "user argument is required",
|
|
home ? throw "home argument is required",
|
|
}:
|
|
{ ... }:
|
|
{
|
|
home-manager.users.${user} = {
|
|
sops.secrets = {
|
|
# Personal
|
|
"git/credentials" = {
|
|
sopsFile = ../../../../../../../secrets/personal/secrets.yaml;
|
|
path = "${home}/.config/git/credentials";
|
|
};
|
|
"git/cookies" = {
|
|
sopsFile = ../../../../../../../secrets/personal/secrets.yaml;
|
|
path = "${home}/.config/git/cookies";
|
|
};
|
|
};
|
|
|
|
programs.ssh.matchBlocks = {
|
|
# Personal
|
|
"github.com/karaolidis" = {
|
|
hostname = "github.com";
|
|
user = "git";
|
|
identityFile = "${home}/.ssh/ssh_personal_ed25519_key";
|
|
extraOptions.StrictHostKeyChecking = "no";
|
|
};
|
|
|
|
# SAS
|
|
"github.com" = {
|
|
hostname = "github.com";
|
|
user = "git";
|
|
identityFile = "${home}/.ssh/ssh_sas_ed25519_key";
|
|
extraOptions.StrictHostKeyChecking = "no";
|
|
};
|
|
|
|
"gitlab.sas.com" = {
|
|
hostname = "gitlab.sas.com";
|
|
user = "git";
|
|
identityFile = "${home}/.ssh/ssh_sas_ed25519_key";
|
|
extraOptions.StrictHostKeyChecking = "no";
|
|
};
|
|
};
|
|
};
|
|
}
|