This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/root-home.nix
Payas Relekar f131210561 emacs: Load neovim config from a Lua file
this allows for better editing experience compared to the stringly mess
from before.

So now Emacs is good for modifying NeoVim config, with support for both
Nix and Lua, and NeoVim is capable of editing Emacs config via orgmode.
Nice :)
2023-09-13 19:11:31 +05:30

15 lines
169 B
Nix

{ ... }:
{
imports = [
./common-home.nix
];
programs = {
git = {
extraConfig = {
safe.directory = [ "/etc/nixos" ];
};
};
};
}