9 lines
188 B
Nix
9 lines
188 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
# Initializes Emacs with org-mode so we can tangle the main config
|
|
".emacs.d/init.el" = {
|
|
text = builtins.readFile ../shared/config/emacs/init.el;
|
|
};
|
|
}
|