From 00a7cf3e9330f63c2427bacd232a2fbc37d8f247 Mon Sep 17 00:00:00 2001 From: tnichols217 <62992267+tnichols217@users.noreply.github.com> Date: Mon, 20 Oct 2025 19:49:46 -0400 Subject: [PATCH] clean up nix source --- flake.nix | 6 +++--- build.nix => nix/build.nix | 0 deploy.nix => nix/deploy.nix | 0 source.nix => nix/source.nix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename build.nix => nix/build.nix (100%) mode change 100755 => 100644 rename deploy.nix => nix/deploy.nix (100%) mode change 100755 => 100644 rename source.nix => nix/source.nix (92%) mode change 100755 => 100644 diff --git a/flake.nix b/flake.nix index 7e03b09..a19a1db 100755 --- a/flake.nix +++ b/flake.nix @@ -65,9 +65,9 @@ apps = rec { }; packages = rec { - branding = pkgs.callPackage ./source.nix { branding = inputs.branding.packages.${system}.branding-white; }; - book = pkgs.callPackage ./build.nix { buildenv = p; src = branding; }; - deploy = pkgs.callPackage ./deploy.nix { src = book; }; + branding = pkgs.callPackage ./nix/source.nix { branding = inputs.branding.packages.${system}.branding-white; }; + book = pkgs.callPackage ./nix/build.nix { buildenv = p; src = branding; }; + deploy = pkgs.callPackage ./nix/deploy.nix { src = book; }; default = book; }; } diff --git a/build.nix b/nix/build.nix old mode 100755 new mode 100644 similarity index 100% rename from build.nix rename to nix/build.nix diff --git a/deploy.nix b/nix/deploy.nix old mode 100755 new mode 100644 similarity index 100% rename from deploy.nix rename to nix/deploy.nix diff --git a/source.nix b/nix/source.nix old mode 100755 new mode 100644 similarity index 92% rename from source.nix rename to nix/source.nix index cb51dbc..d610cc6 --- a/source.nix +++ b/nix/source.nix @@ -3,7 +3,7 @@ stdenv.mkDerivation { pname = "BetaNuLBL-source"; version = "0.0.1"; - src = ./src; + src = ./../src; installPhase = '' mkdir -p $out/branding