about summary refs log tree commit diff stats
path: root/flake/packages/default.nix
blob: 80efcc050a983d32c741b2799142c1aeb6527d46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  nixos-generators,
  defaultSpecialArgs,
  pkgs,
  sysLib,
  ...
}: let
  output = import ../../bootstrap {inherit pkgs sysLib;};
in
  {
    install-iso = nixos-generators.nixosGenerate {
      system = "x86_64-linux";
      specialArgs = defaultSpecialArgs;
      modules = [
        ../../hosts/marduk
      ];
      format = "install-iso";
    };
    gpg-iso = nixos-generators.nixosGenerate {
      system = "x86_64-linux";
      specialArgs = defaultSpecialArgs;
      modules = [
        ../../hosts/isimud
      ];
      format = "iso";
    };
  }
  // output