Compare commits

...

2 commits

Author SHA1 Message Date
bf3b33b0ed
Prefer IPv4 for SSH
I wasn't able to push code to my selfhosted git instance over tailscale as it automatically preferred IPv6 which somehow wasn't reachable
2023-12-22 20:22:40 +01:00
e2cd913423
Add brightnessctl to awesomewm installations 2023-12-22 20:21:25 +01:00
2 changed files with 4 additions and 4 deletions

View file

@ -68,6 +68,7 @@ with lib; {
clipmenu
flameshot
xclip
brightnessctl
]
++ (with unstable; []);
};

View file

@ -6,18 +6,17 @@
...
}: {
home-manager.users.${vars.user} = {
#Prefer IPv4 for ssh
home.file.".ssh/config".text = "AddressFamily inet";
programs.git = {
enable = true;
userName = "GHOSCHT";
userEmail = "31184695+GHOSCHT@users.noreply.github.com";
extraConfig = {
# Sign all commits using ssh key
commit.gpgsign = true;
user.signingkey = "0x2C2C1C62A5388E82";
# gpg.format = "ssh";
# gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers";
# user.signingkey = "~/.ssh/git.pub";
init.defaultBranch = "main";
};
};