From 294ab87d692889cbf7536af37523053b83fb7bf4 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Sat, 6 Sep 2025 14:58:08 +0200 Subject: add lib/devShell.nix --- lib/devShell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/devShell.nix (limited to 'lib/devShell.nix') diff --git a/lib/devShell.nix b/lib/devShell.nix new file mode 100644 index 0000000..110b857 --- /dev/null +++ b/lib/devShell.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: +{ + options = { + devShell = lib.mkOption { + type = lib.types.attrsOf lib.types.unspecified; + default = pkgs.mkShell {}; + }; + outputs.devShell = lib.mkOption { + type = lib.types.package; + }; + }; + config.outputs.devShell = config.devShell; +} -- cgit v1.2.3