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 /flake | |
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 '')
-rw-r--r-- | flake/apps/default.nix | 32 | ||||
-rw-r--r-- | flake/default.nix | 2 | ||||
-rw-r--r-- | flake/packages/default.nix | 2 |
3 files changed, 0 insertions, 36 deletions
diff --git a/flake/apps/default.nix b/flake/apps/default.nix deleted file mode 100644 index b9f4c255..00000000 --- a/flake/apps/default.nix +++ /dev/null @@ -1,32 +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>. -{ - self, - system, - ... -}: { - install = { - type = "app"; - program = "${self.packages."${system}".install}/bin/install"; - }; - activate = { - type = "app"; - program = "${self.packages."${system}".activate}/bin/activate"; - }; - setup = { - 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; -} diff --git a/flake/default.nix b/flake/default.nix index 646f9732..f0b74700 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -119,8 +119,6 @@ in { baseLib."${system}" = baseLib; - apps."${system}" = import ./apps {inherit self system;}; - devShells."${system}" = { default = pkgs.mkShell { packages = [ diff --git a/flake/packages/default.nix b/flake/packages/default.nix index 7ea1b6cc..89c7c4f6 100644 --- a/flake/packages/default.nix +++ b/flake/packages/default.nix @@ -19,7 +19,6 @@ ... }: let inherit (pkgs) lib; - output = import ../../bootstrap {inherit pkgs sysLib;}; run_test_description = pkgs.callPackage ../../tests/infrastructure/run.nix {}; @@ -101,6 +100,5 @@ in nvim = nvim.tiamat; inherit run_test_description; } - // output // output_neovim // myPkgsFlat |