about summary refs log tree commit diff stats
path: root/bootstrap/03_config_setup.sh
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-05-16 16:29:26 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-05-16 16:29:26 +0200
commit8b93ce2b1bddd873ebda5c58db1cae9c444307f3 (patch)
treeb18ec42effabef119bfa3f4ef2c1ef740ecf610a /bootstrap/03_config_setup.sh
parentmodules/nvim/plgs/neorg: Remove the predefined workspaces (diff)
downloadnixos-config-8b93ce2b1bddd873ebda5c58db1cae9c444307f3.zip
bootstrap: Remove
These scripts can be useful for the future, but currently they are just
tech-dept.
Diffstat (limited to '')
-rwxr-xr-xbootstrap/03_config_setup.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/bootstrap/03_config_setup.sh b/bootstrap/03_config_setup.sh
deleted file mode 100755
index 872d1fe1..00000000
--- a/bootstrap/03_config_setup.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /usr/bin/env dash
-
-# nixos-config - My current NixOS configuration
-#
-# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-# This file is part of my nixos-config.
-#
-# You should have received a copy of the License along with this program.
-# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
-
-# shellcheck source=/dev/null
-SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH
-
-# clone packer.nvim to the needed dir, for the nvim install to work
-git clone --depth 1 https://github.com/wbthomason/packer.nvim /mnt/srv/home/soispha/.local/share/nvim/site/pack/packer/start/packer.nvim
-
-nixos-enter --command 'nvim -c "PackerSync" -c "qall" -u "/mnt/srv/home/soispha/.config/nvim/init.lua" --headless'
-
-# vim: ft=sh