forked from Fediversity/simple-nixos-fediverse
5ed89f0c1f
This doesn't work yet for reasons that are not entirely clear to me: > nix run .#deploy.all --show-trace error: 'nixosConfigurations.all.type' is not a string but sic! > nix build .#installers.all warning: Git tree '/home/vg/src/simple-nixos-fediverse' is dirty error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'nixos-24.11.20240815.9286249-x86_64-linux.iso' whose name attribute is located at /nix/store/nqqkj0pwx2ymv8rxpw1m80zd4fxkvk0s-source/pkgs/stdenv/generic/make-derivation.nix:334:7 … while evaluating attribute 'sources' of derivation 'nixos-24.11.20240815.9286249-x86_64-linux.iso' at /nix/store/nqqkj0pwx2ymv8rxpw1m80zd4fxkvk0s-source/nixos/lib/make-iso9660-image.nix:76:3: 75| 76| sources = map (x: x.source) contents; | ^ 77| targets = map (x: x.target) contents; (stack trace truncated; use '--show-trace' to show the full trace) error: Could not load a value as a module, because it is of type "flake", in file /nix/store/nqqkj0pwx2ymv8rxpw1m80zd4fxkvk0s-source/flake.nix. ???
30 lines
935 B
Nix
30 lines
935 B
Nix
/**
|
|
Convert a NixOS configuration to one for a minimal installer ISO
|
|
|
|
WARNING: Running this installer will format the target disk!
|
|
*/
|
|
nixpkgs: machine:
|
|
let
|
|
installer = { config, pkgs, ... }:
|
|
let
|
|
bootstrap = pkgs.writeShellApplication {
|
|
name = "bootstrap";
|
|
runtimeInputs = with pkgs; [ nixos-install-tools ];
|
|
text = ''
|
|
${machine.config.system.build.diskoScript}
|
|
nixos-install --no-root-password --no-channel-copy --system ${machine.config.system.build.toplevel}
|
|
'';
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
programs.bash.loginShellInit = ''
|
|
${nixpkgs.lib.getExe bootstrap}
|
|
'';
|
|
};
|
|
in
|
|
(nixpkgs.lib.nixosSystem { modules = [installer];}).config.system.build.isoImage
|