2024-03-11 16:19:31 +01:00
|
|
|
{ path, pkgs }:
|
2023-11-15 00:07:16 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
earlyInitText = ''
|
2024-03-11 16:19:31 +01:00
|
|
|
${builtins.readFile (path + "early-init.el")}
|
2023-11-15 00:07:16 +01:00
|
|
|
'';
|
|
|
|
initText = ''
|
|
|
|
(defvar materus/init-from-home nil)
|
|
|
|
(when materus/init-from-home
|
|
|
|
(setq-default inhibit-defaul-init 1)
|
|
|
|
)
|
|
|
|
(setq-default materus/nix-packages (require 'doom-themes nil 'noerror))
|
|
|
|
${builtins.readFile (path + "packages.el")}
|
|
|
|
${builtins.readFile (path + "init.el")}
|
|
|
|
'';
|
2024-03-11 16:19:31 +01:00
|
|
|
|
2023-11-15 00:07:16 +01:00
|
|
|
}
|