0
fork

Configure Feed

Select the types of activity you want to include in your feed.

I can still learn things.

+78
+58
configs/ssh-config
··· 1 + # 2 + # I just include this config whenever 3 + # 4 + 5 + # Git forges =============================================================================================== 6 + 7 + # ----------- Forges hosted by me ---------- 8 + 9 + Host forge.strawmelonjuice.com 10 + HostName marpi5-1.taild5b3d4.ts.net 11 + Port 222 12 + User git 13 + IdentityFile ~/.ssh/id_ed25519 14 + 15 + Host knot.strawmelonjuice.com 16 + HostName marpi5-1.taild5b3d4.ts.net 17 + Port 2222 18 + User git 19 + IdentityFile ~/.ssh/id_ed25519 20 + 21 + # ------- Forges hosted by Ollie -------- 22 + 23 + Host knot.nuv.sh 24 + Port 2222 25 + User git 26 + IdentityFile ~/.ssh/id_ed25519 27 + 28 + Host git.nuv.sh 29 + Port 222 30 + User git 31 + IdentityFile ~/.ssh/id_ed25519 32 + 33 + # ------ Forges hosted by Others -------- 34 + Host codeberg.org 35 + User git 36 + IdentityFile ~/.ssh/id_ed25519 37 + Host github.com 38 + User git 39 + IdentityFile ~/.ssh/id_ed25519 40 + 41 + 42 + 43 + 44 + # Servers ================================================================================================== 45 + 46 + # ---- Strawmelonservices/marpi5-1 ------ 47 + Host strawmelonservices 48 + HostName marpi5-1.taild5b3d4.ts.net 49 + User mar 50 + Port 22 51 + IdentityFile ~/.ssh/hetzner # Heheh, hetzner is not where she's hosted btw. 52 + Host strawmelonservices-temp 53 + RequestTTY yes 54 + RemoteCommand watch -n 1 "vcgencmd measure_temp && cat /sys/class/thermal/cooling_device0/cur_state" 55 + HostName marpi5-1.taild5b3d4.ts.net 56 + User mar 57 + Port 22 58 + IdentityFile ~/.ssh/hetzner
+5
home/modules/development/jujutsu.nix
··· 14 14 settings = { 15 15 user.name = "MLC Bloeiman"; 16 16 user.email = "mar@strawmelonjuice.com"; 17 + signing = { 18 + backend = "gpg"; 19 + behaviour = "own"; 20 + gpg.key = "9FFA7AE8896DD236"; 21 + }; 17 22 ui.diff-formatter = [ 18 23 "difft" 19 24 "--color=always"
+13
home/modules/shell.nix
··· 27 27 28 28 }; 29 29 30 + 31 + services.gpg-agent = { 32 + enable = true; 33 + pinentryPackage = pkgs.pinentry-qt; 34 + 35 + defaultCacheTtl = 28800; 36 + maxCacheTtl = 28800; 37 + }; 38 + home.file.".ssh/config_shared" = { 39 + source = ../../configs/ssh-config; 40 + }; 41 + 42 + 30 43 xdg.configFile."fish" = { 31 44 source = ../../configs/fish; 32 45 recursive = true;
+2
hosts/all-hosts.nix
··· 47 47 }; 48 48 49 49 environment.systemPackages = with pkgs; [ 50 + pinentry-qt 50 51 git 52 + gnupg 51 53 jj 52 54 podman-compose 53 55 podman-tui