WIP: Changed Hyprland from Hyprland to Lua

This commit is contained in:
2026-05-25 01:31:36 +02:00
parent 2a28574058
commit d84b2e882d
9 changed files with 315 additions and 354 deletions
+12 -13
View File
@@ -3,35 +3,34 @@
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
settings = {
"*" = {
addKeysToAgent = "yes";
AddKeysToAgent = "yes";
};
"*.cyperpunk.de" = {
identityFile =
IdentityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/ssh" else "/home/${primaryUser}/.ssh/ssh";
user = primaryUser;
User = primaryUser;
};
"github.com" = {
identityFile =
IdentityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/github" else "/home/${primaryUser}/.ssh/github";
user = "git";
User = "git";
};
"git.rz.tu-bs.de" = {
identityFile =
IdentityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/github" else "/home/${primaryUser}/.ssh/github";
user = "git";
User = "git";
};
"git.cyperpunk.de" = {
hostname = "git.cyperpunk.de";
port = 12222;
user = "gitea";
identityFile =
HostName = "git.cyperpunk.de";
Port = 12222;
User = "gitea";
IdentityFile =
if isDarwin then "/Users/${primaryUser}/.ssh/ssh" else "/home/${primaryUser}/.ssh/ssh";
};
};