feat: add nixedit command

open nixconf folder using the default editor
This commit is contained in:
Nydragon 2024-05-28 15:30:38 +09:00
parent 2efc22b67e
commit 80e24b3134
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 3 additions and 0 deletions

View file

@ -112,6 +112,7 @@
scripts = with import ./scripts { inherit pkgs; }; [ scripts = with import ./scripts { inherit pkgs; }; [
screenshot screenshot
set-background set-background
nixedit
]; ];
in in
scripts ++ pk; scripts ++ pk;

View file

@ -26,4 +26,6 @@
} }
) )
); );
nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR .";
} }