Store full user DOOMDIR

I was hoping to avoid this but it does not seem practical: I'm pretty
sure I need the user module in the store to override its packages.el,
and Doom does not separate the user module and doom-user-dir.
This commit is contained in:
Marien Zwart 2024-03-30 23:59:56 +11:00
parent d968be8a05
commit 1d571bb2d6
No known key found for this signature in database
2 changed files with 39 additions and 20 deletions

View file

@ -31,10 +31,7 @@
};
packages.doom-minimal = pkgs.callPackage ./package.nix common;
packages.doom-full = pkgs.callPackage ./package.nix (common // { full = true; });
packages.doom-example = pkgs.callPackage ./package.nix (common // {
doomInitFile = ./example/init.el;
doomPrivateModule = ./example/packages.el;
});
packages.doom-example = pkgs.callPackage ./package.nix (common // { doomDir = ./example; });
};
};
}