Compare commits

...

2 commits

Author SHA1 Message Date
fc99c74d94
Make my windows wobbly enough 2024-11-23 23:28:37 -07:00
9d68536e73
Add ssh config 2024-11-23 23:00:01 -07:00
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ ... }:
{
programs.ssh = {
enable = true;
forwardAgent = true;
matchBlocks = {
# Tailscale nodes
"vps" = {
hostName = "oracle-vps";
user = "tyman";
port = 22;
};
"srv" = {
hostName = "old-lenovo-laptop";
user = "ty";
port = 22;
};
"polyfrost" = {
hostName = "polyfrost-vps";
user = "tyman";
port = 22;
};
# Git hosts
"forgejo" = {
hostName = "git.myriation.xyz";
user = "git";
port = 22;
};
"github" = {
hostName = "github.com";
user = "git";
port = 22;
};
"codeberg" = {
hostName = "codeberg.org";
user = "git";
port = 22;
};
};
};
services.ssh-agent.enable = false; # Handled by GPG
}

View file

@ -44,6 +44,11 @@
configFile = {
# Enable indexing
baloofilerc."Basic Settings"."Indexing-Enabled" = true;
# Wobbly windows config
kwinrc."Effect-wobblywindows" = {
AdvancedMode = false;
WobblynessLevel = 2;
};
};
};
}