10 lines
231 B
Nix
10 lines
231 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config.home-manager.users."${config.system.singleUser}".home.file = {
|
|
".emacs".source = ./dotemacs;
|
|
".emacs.d/early-init.el".source = ./early-init.el;
|
|
".emacs.d/mu4e.el".source = ./mu4e.el;
|
|
};
|
|
}
|