mirror of
https://gitlab.com/rensa-nix/utils.git
synced 2025-12-12 15:40:11 +01:00
22 lines
443 B
Nix
22 lines
443 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
ren.url = "gitlab:rensa-nix/core?dir=lib";
|
|
};
|
|
|
|
outputs = {ren, ...} @ inputs:
|
|
ren.buildWith
|
|
{
|
|
inherit inputs;
|
|
cellsFrom = ./nix;
|
|
transformInputs = system: i:
|
|
i
|
|
// {
|
|
pkgs = import i.nixpkgs {inherit system;};
|
|
};
|
|
cellBlocks = with ren.blocks; [
|
|
(simple "devShells")
|
|
];
|
|
}
|
|
{};
|
|
}
|