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

7
lib/images/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, lib, system, ... }:
let
commons = (import ./commons) { inherit pkgs lib system; };
debian = (import ./debian) { inherit pkgs lib system commons; };
in {
inherit commons debian;
}