| So I have the flake referenced in the inputs section of flake.nix and then I have this (truncated) version of my home-manager/home.nix:
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
# doom emacs
inputs.nix-doom-emacs.hmModule
];
# emacs
programs.doom-emacs = {
enable = true;
doomPrivateDir = ./dotfiles/doom.d;
};
}
|