mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2025-12-12 18:10:07 +01:00
23 lines
368 B
Nix
23 lines
368 B
Nix
|
|
{
|
||
|
|
description = "Nixlets lib";
|
||
|
|
|
||
|
|
outputs = {
|
||
|
|
self,
|
||
|
|
nixpkgs,
|
||
|
|
kubenix,
|
||
|
|
...
|
||
|
|
} @ inputs:
|
||
|
|
import ./. {
|
||
|
|
inherit (nixpkgs) lib;
|
||
|
|
inherit inputs;
|
||
|
|
};
|
||
|
|
|
||
|
|
inputs = {
|
||
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
|
kubenix = {
|
||
|
|
url = "github:TECHNOFAB11/kubenix";
|
||
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|