diff options
author | Emile <git@emile.space> | 2024-04-05 18:38:47 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-04-05 18:38:47 +0200 |
commit | 37a4d293a518829988517ea80b4466379bb2b753 (patch) | |
tree | c9a6c893c492d39f746dfb91df945a3cabf37274 /nix/hosts/caladan/home_emile.nix | |
parent | 9cf1a0e548c92cc6bcbd3f100a82a44d9889397d (diff) |
emacs config
Simplified it once again to apply the complex config later on again
Diffstat (limited to 'nix/hosts/caladan/home_emile.nix')
-rw-r--r-- | nix/hosts/caladan/home_emile.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nix/hosts/caladan/home_emile.nix b/nix/hosts/caladan/home_emile.nix index ae25a07..d622df0 100644 --- a/nix/hosts/caladan/home_emile.nix +++ b/nix/hosts/caladan/home_emile.nix @@ -52,6 +52,14 @@ ''; }; + emacs = { + enable = true; + package = pkgs.emacs; # replace with pkgs.emacs-gtk, or a version provided by the community overlay if desired. + extraConfig = '' + (setq standard-indent 2) + ''; + }; + kitty = { enable = true; |