feat: rewrite how nixlets work

This commit is contained in:
TECHNOFAB 2024-05-08 17:09:17 +00:00
parent ba81fba6b2
commit 0cde19e51f
36 changed files with 494 additions and 125 deletions

22
lib/flake.nix Normal file
View file

@ -0,0 +1,22 @@
{
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";
};
};
}