From eebe9e75d1a5d124fd8addf3c7e6a9c3a5a425ad Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 11 Sep 2026 07:32:19 -0400 Subject: [PATCH] Updated emacs to 31 and fixed kanshi profile descriptors --- assets/.config/kanshi/config | 4 ++-- home/headful-nixos.nix | 2 -- home/modules/emacs.nix | 5 +++++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/assets/.config/kanshi/config b/assets/.config/kanshi/config index 4970c81..6428b66 100644 --- a/assets/.config/kanshi/config +++ b/assets/.config/kanshi/config @@ -1,13 +1,13 @@ profile docked { # Center 4K monitor - output DP-6 { + output "Dell Inc. DELL S3221QS 9Y4W6N3" { mode 3840x2160@60.000 position 1920,120 scale 1.25 } # Right 1080p monitor (rotated left) - output DP-7 { + output "Dell Inc. DELL U2417H XVNNT6B1890L" { mode 1920x1080@60.000 position 3072,0 transform 90 diff --git a/home/headful-nixos.nix b/home/headful-nixos.nix index 3a5a9f0..2971ef3 100644 --- a/home/headful-nixos.nix +++ b/home/headful-nixos.nix @@ -15,8 +15,6 @@ ./modules/zsh.nix ]; - services.emacs.enable = true; - home.packages = with pkgs; [ # Password manager rbw diff --git a/home/modules/emacs.nix b/home/modules/emacs.nix index 84733a2..0d37a04 100644 --- a/home/modules/emacs.nix +++ b/home/modules/emacs.nix @@ -37,4 +37,9 @@ ]; }; }; + + services.emacs = { + enable = true; + defaultEditor = true; + }; }