From b2b720f0f0604babcf992497e5b6c0c8b48eea7f Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 24 Jun 2026 12:43:10 +0100 Subject: [PATCH] chore(nix->guix): remove flake.nix (Guix-only estate policy) --- flake.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 flake.nix diff --git a/flake.nix b/flake.nix deleted file mode 100644 index bd12a9e..0000000 --- a/flake.nix +++ /dev/null @@ -1,31 +0,0 @@ -# SPDX-License-Identifier: MPL-2.0 -# SPDX-FileCopyrightText: 2024-2026 Jonathan D.A. Jewell (hyperpolymath) -# -# Nix fallback for the cyo dev environment (Guix is primary; see guix.scm). -# Retained per standards#102 rule 3 (KEEP+DEP): this flake is the sole -# source of `reuse` (the SPDX/REUSE-spec linter), which the Guix -# manifest does not carry. Remove only once `reuse` is available via Guix. -# nix develop -{ - description = "cyo — choose-your-own-adventure for your craft (dev shell)"; - - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - inputs.flake-utils.url = "github:numtide/flake-utils"; - - outputs = { self, nixpkgs, flake-utils }: - flake-utils.lib.eachDefaultSystem (system: - let pkgs = import nixpkgs { inherit system; }; - in { - devShells.default = pkgs.mkShell { - name = "cyo"; - packages = with pkgs; [ - bashInteractive - coreutils - asciidoctor - bat - shellcheck - reuse - ]; - }; - }); -}