ssh: refactoring
parent
e46de005fd
commit
afdd0a22f3
|
@ -11,38 +11,36 @@ in
|
||||||
homeNetwork = lib.mkEnableOption "include local hostnames for home network devices";
|
homeNetwork = lib.mkEnableOption "include local hostnames for home network devices";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config =
|
||||||
|
let home = config.home.homeDirectory + "/.ssh";
|
||||||
|
in lib.mkIf cfg.enable {
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
includes = [
|
includes = [ "conf.d/*" ];
|
||||||
"conf.d/*"
|
|
||||||
];
|
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"git.zynh.me" = {
|
"git.zynh.me" = {
|
||||||
hostname = "git.zynh.me";
|
hostname = "git.zynh.me";
|
||||||
user = "git";
|
user = "git";
|
||||||
port = 2221;
|
port = 2221;
|
||||||
identityFile = "${config.home.homeDirectory}/.ssh/personal_git";
|
identityFile = "${home}/.ssh/personal_git";
|
||||||
};
|
};
|
||||||
msiserver = {
|
msiserver = {
|
||||||
hostname = "scarlet.zynh.me";
|
hostname = "scarlet.zynh.me";
|
||||||
user = "zynh";
|
user = "zynh";
|
||||||
identityFile = "${config.home.homeDirectory}/.ssh/msiserver";
|
identityFile = "${home}/.ssh/msiserver";
|
||||||
};
|
};
|
||||||
"msiserver.local" = lib.mkIf cfg.homeNetwork {
|
"msiserver.local" = lib.mkIf cfg.homeNetwork {
|
||||||
hostname = "msiserver";
|
hostname = "msiserver";
|
||||||
user = "zynh";
|
user = "zynh";
|
||||||
identityFile = "${config.home.homeDirectory}/.ssh/msiserver";
|
identityFile = "${home}/.ssh/msiserver";
|
||||||
};
|
};
|
||||||
caveserver = {
|
caveserver = {
|
||||||
identityFile = "${config.home.homeDirectory}/.ssh/caveserver";
|
identityFile = "${home}/.ssh/caveserver";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sops.secrets =
|
sops.secrets = lib.mkIf sops {
|
||||||
let home = config.home.homeDirectory;
|
|
||||||
in lib.mkIf sops {
|
|
||||||
"private_keys/msiserver".path = "${home}/.ssh/msiserver";
|
"private_keys/msiserver".path = "${home}/.ssh/msiserver";
|
||||||
"private_keys/caveserver".path = "${home}/.ssh/caveserver";
|
"private_keys/caveserver".path = "${home}/.ssh/caveserver";
|
||||||
"ssh_hosts/caveserver".path = "${home}/.ssh/conf.d/caveserver_config";
|
"ssh_hosts/caveserver".path = "${home}/.ssh/conf.d/caveserver_config";
|
||||||
|
|
Loading…
Reference in New Issue