Remove redundant loading of init.el in home-manager installation instructions

The home-manager already does this, which causes `init.el` to be loaded twice if the user also adds this snippet to their config.
This commit is contained in:
Tristan
2021-10-26 02:35:50 -04:00
committed by ckie
parent 665e729bb8
commit ed01dfb918

View File

@ -33,9 +33,6 @@ let
};
in {
home.packages = [ doom-emacs ];
home.file.".emacs.d/init.el".text = ''
(load "default.el")
'';
}
```