From bf7bf560f4ec38c4ade7293222065a1089d68788 Mon Sep 17 00:00:00 2001 From: Sam Lehman Date: Tue, 5 Mar 2024 15:59:32 -0500 Subject: [PATCH] feat: //repo/devshellProfiles/std --- nix/repo/devshellProfiles.nix | 15 ++++++--------- nix/repo/devshellProfiles/std.nix | 1 + 2 files changed, 7 insertions(+), 9 deletions(-) create mode 100644 nix/repo/devshellProfiles/std.nix diff --git a/nix/repo/devshellProfiles.nix b/nix/repo/devshellProfiles.nix index 96b0296d..cab241ab 100644 --- a/nix/repo/devshellProfiles.nix +++ b/nix/repo/devshellProfiles.nix @@ -1,9 +1,6 @@ -{ - inputs, - cell, -}: let - l = nixpkgs.lib // builtins; - inherit (inputs) nixpkgs; - inherit (inputs.std) lib std; -in - std.devshellProfiles +{ inputs, cell, }: +inputs.haumea.lib.load { + src = ./devshellProfiles; + loader = inputs.haumea.lib.loaders.verbatim; + transformer = inputs.haumea.lib.transformers.liftDefault; +} diff --git a/nix/repo/devshellProfiles/std.nix b/nix/repo/devshellProfiles/std.nix new file mode 100644 index 00000000..f829e3ab --- /dev/null +++ b/nix/repo/devshellProfiles/std.nix @@ -0,0 +1 @@ +{ inputs, cell, }: inputs.std.devshellProfiles.default