It could be used like this:
```nix
{
inputs = {
nix-doom-emacs.url = "github:vlaci/nix-doom-emacs";
};
outputs =
{ nixpkgs, nix-doom-emacs
, ...
}: {
nixosConfigurations.exampleHost = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
({ pkgs, ... }: {
boot.isContainer = true;
environment.systemPackages =
let
doom-emacs = nix-doom-emacs.package.${system} { doomPrivateDir = ./doom.d; };
in
[
doom-emacs
];
})
];
};
};
}
```
See documentation in `default.nix` to see what can be passed here
The new straight version won't unhelpfully override `(org-version)` and
`(org-revision)` with with its custom implementation that only work in a
git repository. This change will make `elfeed` package work again.
(Setting `straight-fix-org` to `nil` would have also resolved the issue)
The updated `straight.el` version also plays along better with emacsGcc.
Relates-to: vlaci/nix-straight.el#2
Fixes: #158
If input name contains `.` character then `invalid flake input path
element` error message is displayed on running `nix flake update
--update-input x.y`