From b1f14470acfa67b5198726d938ab8f1789b1734f Mon Sep 17 00:00:00 2001 From: Fiscal Velvet Poet Date: Tue, 2 May 2023 13:28:43 +1000 Subject: [PATCH] nix: added a basic shell providing nix & tea progresses #1 --- outputs.nix | 1 + shell.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 shell.nix diff --git a/outputs.nix b/outputs.nix index 8dae03a..0714f51 100644 --- a/outputs.nix +++ b/outputs.nix @@ -23,5 +23,6 @@ type = "app"; program = "${flake.packages."skeleton-web:exe:site"}/bin/site"; }; + devShell = pkgs.callPackage ./shell.nix {}; } ) diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..761e3a3 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ + pkgs ? import {}, + mkShell, +}: +with pkgs; + mkShell { + buildInputs = [ + nix # Powerful package manager, makes packaging reliable & reproducible + tea # Gitea official CLI client + ]; + }