fix lots of nixvim warnings

This commit is contained in:
gwg313 2025-03-23 13:49:03 -04:00
parent 2446716e8f
commit fe4380c766
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
20 changed files with 535 additions and 358 deletions

View file

@ -1,5 +1,6 @@
# A modern replacement for 'ls'.
{...}: {
{ ... }:
{
programs.ssh = {
enable = true;
hashKnownHosts = true;
@ -48,6 +49,18 @@
user = "gwg313";
identityFile = "/home/gwg313/.ssh/home/id_ed25519";
};
"onedev.local" = {
hostname = "git.local.gwg313.xyz";
user = "gwg313";
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
port = 2222;
};
"onedev" = {
hostname = "git.gwg313.xyz";
user = "gwg313";
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
port = 2222;
};
};
};
}