fist commit - images lib in a working condition for debian

This commit is contained in:
Sagar Ch 2024-05-23 16:33:38 +00:00
commit ad2092531c
12 changed files with 308 additions and 0 deletions

8
lib/default.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, lib, system ? "x86_64-linux", ... }:
let
images = import ./images { inherit pkgs lib system; };
in
{
inherit images;
inherit (images.commons) customizeImage;
}