Rename doomdirs/example and doom-example

Move `doomdirs/example/` to just `doomdir/`, and rename the package
using it from `doom-example` to `doom-emacs`.

I do not expect to need multiple doomdirs checked in again, and I can
unclutter the packages provided by the flake a bit now that most of them
are checks.
This commit is contained in:
Marien Zwart 2024-05-27 21:28:20 +10:00
parent 2fc58787da
commit 0f7eb10233
No known key found for this signature in database
5 changed files with 9 additions and 9 deletions

View file

@ -80,16 +80,16 @@
makeDoomPackages = doomFromPackages pkgs;
});
packages = perSystemPackages (pkgs: {
doom-example = (doomFromPackages pkgs {
doom-emacs = (doomFromPackages pkgs {
# TODO: drop after NixOS 24.05 release.
emacs = pkgs.emacs29;
doomDir = ./doomdirs/example;
doomDir = ./doomdir;
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
}).doomEmacs;
doom-example-without-loader = (doomFromPackages pkgs {
doom-emacs-without-loader = (doomFromPackages pkgs {
# TODO: drop after NixOS 24.05 release.
emacs = pkgs.emacs29;
doomDir = ./doomdirs/example;
doomDir = ./doomdir;
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
profileName = "";
}).doomEmacs;