Compare commits

...

2 Commits

Author SHA1 Message Date
d1237dab12 update syntax 2026-01-06 02:03:50 -06:00
61bcc8776f hyprland error fix 2026-01-06 01:46:52 -06:00
3 changed files with 17 additions and 7 deletions

View File

@@ -93,11 +93,6 @@ master {
new_status = "master"
}
gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
workspace_swipe = off
}
misc {
disable_hyprland_logo = false
disable_splash_rendering = true

View File

@@ -27,7 +27,7 @@
{ path = "${config.sops.templates.gitconfig.path}"; }
];
extraConfig = {
settings = {
init = {
defaultBranch = "master";
};

View File

@@ -1,8 +1,23 @@
{ config, lib, pkgs, ... }: {
{ ... }: {
programs.ssh = {
enable = true;
# defaults as of 25.11
matchBlocks."*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
};
}