diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 16:29:26 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 16:29:26 +0200 |
commit | 8b93ce2b1bddd873ebda5c58db1cae9c444307f3 (patch) | |
tree | b18ec42effabef119bfa3f4ef2c1ef740ecf610a /bootstrap/default.nix | |
parent | modules/nvim/plgs/neorg: Remove the predefined workspaces (diff) | |
download | nixos-config-8b93ce2b1bddd873ebda5c58db1cae9c444307f3.zip |
bootstrap: Remove
These scripts can be useful for the future, but currently they are just tech-dept.
Diffstat (limited to 'bootstrap/default.nix')
-rw-r--r-- | bootstrap/default.nix | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/bootstrap/default.nix b/bootstrap/default.nix deleted file mode 100644 index a5492290..00000000 --- a/bootstrap/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -# 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>. -{ - pkgs, - sysLib, - ... -}: let - ensure_config_variables_dependencies = builtins.attrValues {inherit (pkgs) systemd jq dash gnugrep curl;}; - replacementStrings = {SCRIPT_ENSURE_CONFIG_VARIABLES = "${ensure_config_variables}/bin/ensure_config_variables";}; - activate = sysLib.writeShellScript { - dependencies = with pkgs; [jq gawk curl coreutils libuuid lix git] ++ ensure_config_variables_dependencies; - name = "activate"; - src = ./01_activate.sh; - inherit replacementStrings; - }; - install = sysLib.writeShellScript { - dependencies = with pkgs; [jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox lix git] ++ ensure_config_variables_dependencies; - name = "install"; - src = ./01_install.sh; - inherit replacementStrings; - }; - setup = sysLib.writeShellScript { - dependencies = with pkgs; [dash gawk curl git lix gnugrep nixos-install-tools coreutils libuuid] ++ ensure_config_variables_dependencies; - name = "setup"; - src = ./02_setup.sh; - inherit replacementStrings; - }; - config_setup = sysLib.writeShellScript { - dependencies = builtins.attrValues {inherit (pkgs) git neovim;} ++ ensure_config_variables_dependencies; - name = "config_setup"; - src = ./03_config_setup.sh; - keepPath = true; - inherit replacementStrings; - }; - ensure_config_variables = sysLib.writeShellScript { - name = "ensure_config_variables"; - src = ./99_ensure_config_variables.sh; - wrap = false; - }; - output = {inherit activate install setup config_setup ensure_config_variables;}; -in - output |