network options working for basic functionality

This commit is contained in:
Git Sagar 2024-06-03 20:36:30 -03:00
parent e4cdc2cae5
commit 392375b046
9 changed files with 348 additions and 221 deletions

View file

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