From 386a1d9fb85fe163c7686ae8409eeca6f0ae89f3 Mon Sep 17 00:00:00 2001 From: ene Date: Fri, 24 Feb 2023 17:21:33 +0100 Subject: Feat(bootstrap): Add nvim to the setup This is still not very nixy, but I would like to have it just work right now. But sure, this will (hopefully) get rewritten someday. --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 24f6e5f1..bb54840d 100644 --- a/flake.nix +++ b/flake.nix @@ -89,6 +89,10 @@ inherit pkgs; inherit (inputs) shell-library; }; + config_setup = import ./bootstrap/config_setup { + inherit pkgs; + inherit (inputs) shell-library; + }; }; apps."${system}" = { @@ -104,6 +108,10 @@ type = "app"; program = "${self.packages."${system}".setup}/bin/setup"; }; + config_setup = { + type = "app"; + program = "${self.packages."${system}".config_setup}/bin/config_setup"; + }; default = self.apps."${system}".activate; }; }; -- cgit 1.4.1