From 46f868e733e99c9fae8a1f610df112d68d9dfa8d Mon Sep 17 00:00:00 2001 From: kagura114 Date: Sat, 14 Sep 2024 23:29:50 +0800 Subject: [PATCH] Add ssh config; fix kitty fontsize across devices --- config/kitty.conf | 2 +- config/ssh | 24 ++++++++++++++++++++++++ home.nix | 1 + 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 config/ssh diff --git a/config/kitty.conf b/config/kitty.conf index 3262377..5ee5220 100644 --- a/config/kitty.conf +++ b/config/kitty.conf @@ -4,7 +4,7 @@ bold_font auto italic_font auto bold_italic_font auto -font_size 11.5 +# font_size 11.5 # Terminal bell enable_audio_bell no diff --git a/config/ssh b/config/ssh new file mode 100644 index 0000000..881b997 --- /dev/null +++ b/config/ssh @@ -0,0 +1,24 @@ +Host github.com + Hostname ssh.github.com + Port 443 + User git + +Host router.dorm.lan + Hostname 192.168.1.1 + Port 11451 + User root + +Host nas.dorm.lan + Hostname 192.168.1.149 + Port 22 + User root + +Host ssh.git.kagurach.uk + Hostname ssh.git.kagurach.uk + Port 22 + User root + +Host remote.dorm.lan + Hostname ssh.git.kagurach.uk + Port 30072 + User root diff --git a/home.nix b/home.nix index 2412e0a..4928003 100644 --- a/home.nix +++ b/home.nix @@ -78,6 +78,7 @@ in home.file = { ".config/fuzzel/fuzzel.ini".source = ./config/fuzzel.ini; ".config/kitty/kitty.conf".source = ./config/kitty.conf; + ".ssh/config".source = ./config/ssh; }; home.sessionVariables = {