2023-09-08 17:54:07 +02:00
|
|
|
{
|
|
|
|
description = "NixOS ISO of netali";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
};
|
|
|
|
outputs = { self, nixpkgs }@inputs: {
|
|
|
|
|
|
|
|
iso = (nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = inputs;
|
|
|
|
modules = [ ./iso.nix ];
|
|
|
|
}).config.system.build.isoImage;
|
|
|
|
|
2023-09-09 18:28:59 +02:00
|
|
|
hydraJobs.iso = self.iso;
|
|
|
|
|
2023-09-08 17:54:07 +02:00
|
|
|
};
|
|
|
|
}
|