Add example (based on my own config)

This commit is contained in:
Marien Zwart 2024-03-18 21:02:41 +11:00
parent 63ba8e4040
commit e4ab09ecc6
No known key found for this signature in database
3 changed files with 211 additions and 0 deletions

View file

@ -31,6 +31,10 @@
};
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;
});
};
};
}