From cd730eaf5cd3e12831eaa6b7a22798feb5ef12bc Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Thu, 7 Sep 2023 08:44:11 +0200 Subject: [PATCH 1/3] gitea: Add tailscale interface to trusted interfaces --- machines/gitea/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machines/gitea/configuration.nix b/machines/gitea/configuration.nix index 3342d2c..c83f0b5 100644 --- a/machines/gitea/configuration.nix +++ b/machines/gitea/configuration.nix @@ -45,6 +45,10 @@ # nameservers = [ "10.0.0.254" ]; # }; + networking.firewall = { + trustedInterfaces = [ "tailscale0" ]; + }; + proxmoxLXC = { privileged = true; }; From 666938602908cbcfa8576fbfcf5bfa03a4ebc25f Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Thu, 7 Sep 2023 08:44:37 +0200 Subject: [PATCH 2/3] emacs: Change wording --- home-manager/modules/emacs/config.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/modules/emacs/config.org b/home-manager/modules/emacs/config.org index a21cfbe..296ede2 100644 --- a/home-manager/modules/emacs/config.org +++ b/home-manager/modules/emacs/config.org @@ -764,7 +764,7 @@ Enable =magit= integration ** General settings -Auto balance parenthesese. *Note:* Switched to =electric-pair-mode= +Auto balance parenthesese. *Note:* Disabled in favour of =electric-pair-mode= #+begin_src emacs-lisp :tangle no (use-package smartparens From e50ae422d45ae7a91602eed77053707278bd1e5a Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Thu, 7 Sep 2023 16:08:06 +0200 Subject: [PATCH 3/3] emacs: increase font size a bit --- home-manager/modules/emacs/config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/modules/emacs/config.org b/home-manager/modules/emacs/config.org index 296ede2..7f83456 100644 --- a/home-manager/modules/emacs/config.org +++ b/home-manager/modules/emacs/config.org @@ -57,10 +57,10 @@ This sets some variables with my personal preferences for easy customization #+begin_src emacs-lisp (defvar my/default-font "Iosevka Nerd Font") (defvar my/variable-width-font "Iosevka Aile") - (defvar my/default-font-height 110) + (defvar my/default-font-height 140) (defvar my/default-font-weight 'normal) (defvar my/default-font-width 'normal) - (defvar my/variable-width-font-height 1.2) + (defvar my/variable-width-font-height 1.1) (defvar my/config-file-path (expand-file-name "config.org" user-emacs-directory)) (defvar my/snippets-dir (expand-file-name "snippets" user-emacs-directory)) (defvar my/local-init-file (expand-file-name "local-init.el" user-emacs-directory))