mirror of
https://github.com/nix-community/nix-doom-emacs
synced 2025-08-13 13:13:36 -05:00
Merge pull request #116 from duairc/patch-1
Allow doomPrivateDir to be a /nix/store path
This commit is contained in:
@@ -20,7 +20,7 @@ in
|
|||||||
The specified directory should contain yoour `init.el`, `config.el` and
|
The specified directory should contain yoour `init.el`, `config.el` and
|
||||||
`packages.el` files.
|
`packages.el` files.
|
||||||
'';
|
'';
|
||||||
apply = path: builtins.path { inherit path; };
|
apply = path: if lib.isStorePath path then path else builtins.path { inherit path; };
|
||||||
};
|
};
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
|
Reference in New Issue
Block a user