mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-03 12:27:27 -05:00
work around #62
This commit is contained in:
@ -4,8 +4,6 @@
|
||||
inputs = {
|
||||
home-manager.url = "github:rycee/home-manager";
|
||||
nix-doom-emacs.url = "github:vlaci/nix-doom-emacs/flake";
|
||||
doomPrivateDir.url = "/path/to/doom.d";
|
||||
doomPrivateDir.flake = false;
|
||||
};
|
||||
|
||||
outputs = {
|
||||
@ -13,7 +11,6 @@
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
nix-doom-emacs,
|
||||
doomPrivateDir,
|
||||
...
|
||||
}: {
|
||||
nixosConfigurations.exampleHost = nixpkgs.lib.nixosSystem {
|
||||
@ -25,7 +22,7 @@
|
||||
imports = [ nix-doom-emacs.hmModule ];
|
||||
home.doom-emacs = {
|
||||
enable = true;
|
||||
inherit doomPrivateDir;
|
||||
doomPrivateDir = ./path/to/doom.d;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -14,6 +14,7 @@ in
|
||||
The specified directory should contain yoour `init.el`, `config.el` and
|
||||
`packages.el` files.
|
||||
'';
|
||||
apply = path: builtins.path { inherit path; };
|
||||
};
|
||||
extraConfig = mkOption {
|
||||
description = ''
|
||||
|
Reference in New Issue
Block a user