feat: lisps, hyprland changes, god knows what else

This commit is contained in:
Kat Inskip 2026-01-13 17:52:02 -08:00
parent 35072f0885
commit 6f044a8349
30 changed files with 673 additions and 202 deletions

View file

@ -1,4 +1,14 @@
{ config, pkgs, ... }: {
{ config, pkgs, lib, ... }: let
inherit (lib.meta) getExe';
inherit (lib.modules) mkIf;
in {
services.emacs = {
#defaultEditor = true;
enable = true;
startWithUserSession = true;
socketActivation.enable = true;
};
programs.git.settings.core.editor = mkIf config.services.emacs.defaultEditor "${getExe' config.services.emacs.package "emacsclient"} -c";
programs.doom-emacs = {
enable = true;
emacs = pkgs.emacs-pgtk;
@ -6,10 +16,11 @@
doomLocalDir = "${config.home.homeDirectory}/.local/share/nix-doom";
extraPackages = epkgs: with epkgs; [
catppuccin-theme
treesit-grammars.with-all-grammars
(treesit-grammars.with-grammars (ps: lib.filter (p: !p.meta.broken) (lib.attrValues ps)))
rainbow-delimiters
pkgs.ispell
pkgs.clojure-lsp
frames-only-mode
];
};
}