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. --- bootstrap/config_setup/config_setup.sh | 13 +++++++++++++ bootstrap/config_setup/default.nix | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100755 bootstrap/config_setup/config_setup.sh create mode 100644 bootstrap/config_setup/default.nix (limited to 'bootstrap/config_setup') diff --git a/bootstrap/config_setup/config_setup.sh b/bootstrap/config_setup/config_setup.sh new file mode 100755 index 00000000..92e91187 --- /dev/null +++ b/bootstrap/config_setup/config_setup.sh @@ -0,0 +1,13 @@ +#! /usr/bin/env dash +# shellcheck disable=SC2086 +# shellcheck source=/dev/null +. %SHELL_LIBRARY_PATH +export LIB_TEMP_DIR_FOR_SCRIPT="$(mktemp -d)" + + +# clone packer.nvim to the needed dir, for the nvim install to work +git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim + +nvim -c 'PackerSync' -c 'qall' -u '/mnt/soispha/.config/nvim/init.lua' --headless + +if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi diff --git a/bootstrap/config_setup/default.nix b/bootstrap/config_setup/default.nix new file mode 100644 index 00000000..7f4b6f2a --- /dev/null +++ b/bootstrap/config_setup/default.nix @@ -0,0 +1,12 @@ +# vim: ts=2 +{ + pkgs, + shell-library, + ... +}: let + dependencies = with pkgs; [dash git]; + name = "setup"; + script = ./config_setup.sh; + lib = import ../../lib {inherit pkgs shell-library;}; +in + lib.makeShellScriptWithLibrary {inherit dependencies name script;} -- cgit 1.4.1