diff --git a/home/default.nix b/home/default.nix index 1887020..9a2a944 100644 --- a/home/default.nix +++ b/home/default.nix @@ -112,6 +112,7 @@ scripts = with import ./scripts { inherit pkgs; }; [ screenshot set-background + nixedit ]; in scripts ++ pk; diff --git a/home/scripts/default.nix b/home/scripts/default.nix index 0737623..e985bee 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -26,4 +26,6 @@ } ) ); + + nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR ."; }