Use nixpkgs as unstable on darwin Re-installing seems to have changed how nix is installed.
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M user/modules/emacs.nix → user/modules/emacs.nix
@@ -3,7 +3,7 @@ let inherit (pkgs) stdenv; - pkgsUnstable = if stdenv.isDarwin then import <nixpkgs-unstable> {} else import <nixos-unstable> {}; + pkgsUnstable = if stdenv.isDarwin then import <nixpkgs> {} else import <nixos-unstable> {}; editorScript = pkgs.writeScriptBin "edit" '' #!${pkgs.runtimeShell}