pub-solar-os/modules/customBuilds.nix

12 lines
260 B
Nix
Raw Normal View History

2021-06-19 18:26:07 +00:00
{ lib, pkgs, self, config, modules, channel, ... }:
{
system.build = {
2021-06-19 18:26:07 +00:00
iso = (config.lib.digga.mkBuild
(config.lib.digga.modules.isoConfig {
inherit self;
fullHostConfig = config;
})
).config.system.build.isoImage;
};
}