about summary refs log tree commit diff
path: root/users/tazjin
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2024-01-17T15·25+0300
committerclbot <clbot@tvl.fyi>2024-01-17T15·29+0000
commit5e67b94704e601d7f787f4e75c66f6cd07ee13c2 (patch)
tree9c88b21da13e737f1bac0a81f4ede81f315113bf /users/tazjin
parent4e263216234d5f536ecfe2effa2fc2d5f30df5dd (diff)
fix(tazjin/nixos): disable internal borders in emacs r/7402
They can apparently lead to frame geography calculation issues.

Change-Id: I0a01b9980b30580be6fb356d1c797d551731332c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10656
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin')
-rw-r--r--users/tazjin/nixos/modules/desktop.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/nixos/modules/desktop.nix b/users/tazjin/nixos/modules/desktop.nix
index aec51f182a..e2d77e1657 100644
--- a/users/tazjin/nixos/modules/desktop.nix
+++ b/users/tazjin/nixos/modules/desktop.nix
@@ -29,7 +29,7 @@
 
       windowManager.session = lib.singleton {
         name = "exwm";
-        start = "${config.tazjin.emacs}/bin/tazjins-emacs";
+        start = "${config.tazjin.emacs}/bin/tazjins-emacs --internal-border=0 --border-width=0";
       };
     };
   };