From 80e24b3134f46073cdf6f60163e588c03d832865 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 28 May 2024 15:30:38 +0900 Subject: [PATCH] feat: add nixedit command open nixconf folder using the default editor --- home/default.nix | 1 + home/scripts/default.nix | 2 ++ 2 files changed, 3 insertions(+) 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 ."; }