mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
24 lines
474 B
Nix
24 lines
474 B
Nix
{
|
|
description = "Minimal installer/recovery ISO";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
disko.url = "github:nix-community/disko";
|
|
nvix.url = "github:TheWanderingCrow/nvix";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
...
|
|
} @ inputs: {
|
|
nixosConfigurations = {
|
|
ISO = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs;};
|
|
modules = [
|
|
./installer-config.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|