From e7202295aa7b5ed582748f7b796ee496cd1a30ac Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Fri, 28 Feb 2025 05:28:14 +0800 Subject: [PATCH] refactor: move nvf into home-editor.nix --- modules/home-editor.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/home-editor.nix diff --git a/modules/home-editor.nix b/modules/home-editor.nix new file mode 100644 index 0000000..704ba95 --- /dev/null +++ b/modules/home-editor.nix @@ -0,0 +1,7 @@ +{self, pkgs, ...}: + +{ + home.packages = [ + self.packages.${pkgs.stdenv.system}.nvf + ]; +}