1770523227
This commit is contained in:
@@ -12,6 +12,7 @@ let
|
|||||||
./home/zed.nix
|
./home/zed.nix
|
||||||
./home/ghostty.nix
|
./home/ghostty.nix
|
||||||
./home/syncthing.nix
|
./home/syncthing.nix
|
||||||
|
./home/ssh.nix
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,21 +3,22 @@
|
|||||||
{
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = "
|
matchBlocks = {
|
||||||
Host localhost
|
"localhost" = {
|
||||||
UserKnownHostsFile /dev/null
|
extraOptions.UserKnownHostsFile = "/dev/null";
|
||||||
|
};
|
||||||
Host tux
|
"tux" = {
|
||||||
HostName tuxworld.usask.ca
|
hostname = "tuxworld.usask.ca";
|
||||||
User atl175
|
user = "atl175";
|
||||||
|
};
|
||||||
Host haschel
|
"haschel" = {
|
||||||
HostName haschel
|
hostname = "haschel";
|
||||||
User fedora
|
user = "fedora";
|
||||||
|
};
|
||||||
Host lloyd
|
"lloyd" = {
|
||||||
HostName lloyd
|
hostname = "lloyd";
|
||||||
User truenas_admin
|
user = "truenas_admin";
|
||||||
";
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user