✨ [shared] Added ssh config for desktop. Justfile to get pub ssh
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./sops.nix
|
||||
./ssh.nix
|
||||
./yubikey.nix
|
||||
];
|
||||
|
||||
|
13
shared/modules/security/ssh.nix
Normal file
13
shared/modules/security/ssh.nix
Normal file
@ -0,0 +1,13 @@
|
||||
# /nix/store/<hash>/etc/ssh/ssh_config
|
||||
{
|
||||
programs.ssh.knownHosts =
|
||||
let
|
||||
domain = "dns.martials.no";
|
||||
in
|
||||
{
|
||||
desktop = {
|
||||
extraHostNames = [ "desktop.${domain}" ];
|
||||
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMSzXyTuQyTrWsfORQbvgrqt/33+hfSUDXeMg6D1T2wz";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user