c012f2f4ed
- [x] refactor lib into separate files, similar to NixOS/nixpkgs/lib. - [x] refactor ci to automatically generate derivations from flake outputs - [x] remove cluttered indirection statements throughout the codebase - [x] refactor hosts to allow for upcoming integration tests - [x] improve ambiguity in the existing docs - [x] add [BORS](https://bors.tech) support - [x] add initial integration test - [x] write tests documentation - [x] test lib - [x] improve version string generation, and do so automatically for pkgs/flake.nix sources Clean up the codebase as best we can in preparation for #152 and add tests. From now on, all PRs will be merged with BORS.
31 lines
895 B
Nix
31 lines
895 B
Nix
{ lib, nixos, ... }:
|
|
|
|
{ modules, ... } @ args:
|
|
lib.nixosSystem (args // {
|
|
modules =
|
|
let
|
|
modpath = "nixos/modules";
|
|
cd = "installer/cd-dvd/installation-cd-minimal-new-kernel.nix";
|
|
|
|
isoConfig = (lib.nixosSystem
|
|
(args // {
|
|
modules = modules ++ [
|
|
"${nixos}/${modpath}/${cd}"
|
|
({ config, ... }: {
|
|
isoImage.isoBaseName = "nixos-" + config.networking.hostName;
|
|
# confilcts with networking.wireless which might be slightly
|
|
# more useful on a stick
|
|
networking.networkmanager.enable = lib.mkForce false;
|
|
# confilcts with networking.wireless
|
|
networking.wireless.iwd.enable = lib.mkForce false;
|
|
})
|
|
];
|
|
})).config;
|
|
in
|
|
modules ++ [{
|
|
system.build = {
|
|
iso = isoConfig.system.build.isoImage;
|
|
};
|
|
}];
|
|
})
|