2020-02-10 15:36:53 +00:00
|
|
|
# Experimental flake interface to Nixpkgs.
|
|
|
|
# See https://github.com/NixOS/rfcs/pull/49 for details.
|
2019-02-11 11:27:17 +00:00
|
|
|
{
|
|
|
|
description = "A collection of packages for the Nix package manager";
|
|
|
|
|
2019-08-30 10:48:43 +01:00
|
|
|
outputs = { self }:
|
2019-06-19 11:43:26 +01:00
|
|
|
let
|
|
|
|
jobs = import ./pkgs/top-level/release.nix {
|
2019-08-30 10:48:43 +01:00
|
|
|
nixpkgs = self;
|
2019-06-19 11:43:26 +01:00
|
|
|
};
|
2019-10-15 17:17:21 +01:00
|
|
|
|
2019-09-13 17:26:38 +01:00
|
|
|
lib = import ./lib;
|
2019-10-15 17:17:21 +01:00
|
|
|
|
2021-10-05 10:14:47 +01:00
|
|
|
systems = lib.systems.supported.hydra;
|
2019-10-15 17:17:21 +01:00
|
|
|
|
|
|
|
forAllSystems = f: lib.genAttrs systems (system: f system);
|
|
|
|
|
2019-06-19 11:43:26 +01:00
|
|
|
in
|
2019-02-11 11:27:17 +00:00
|
|
|
{
|
2020-07-23 16:36:45 +01:00
|
|
|
lib = lib.extend (final: prev: {
|
2019-09-13 17:26:38 +01:00
|
|
|
nixosSystem = { modules, ... } @ args:
|
|
|
|
import ./nixos/lib/eval-config.nix (args // {
|
2020-09-11 07:12:58 +01:00
|
|
|
modules =
|
|
|
|
let
|
|
|
|
vmConfig = (import ./nixos/lib/eval-config.nix
|
|
|
|
(args // {
|
|
|
|
modules = modules ++ [ ./nixos/modules/virtualisation/qemu-vm.nix ];
|
|
|
|
})).config;
|
|
|
|
|
|
|
|
vmWithBootLoaderConfig = (import ./nixos/lib/eval-config.nix
|
|
|
|
(args // {
|
|
|
|
modules = modules ++ [
|
|
|
|
./nixos/modules/virtualisation/qemu-vm.nix
|
|
|
|
{ virtualisation.useBootLoader = true; }
|
2021-01-05 19:29:52 +00:00
|
|
|
({ config, ... }: {
|
|
|
|
virtualisation.useEFIBoot =
|
|
|
|
config.boot.loader.systemd-boot.enable ||
|
|
|
|
config.boot.loader.efi.canTouchEfiVariables;
|
|
|
|
})
|
2020-09-11 07:12:58 +01:00
|
|
|
];
|
|
|
|
})).config;
|
2021-07-11 00:33:17 +01:00
|
|
|
|
|
|
|
moduleDeclarationFile =
|
2021-07-18 18:09:38 +01:00
|
|
|
let
|
|
|
|
# Even though `modules` is a mandatory argument for `nixosSystem`, it doesn't
|
|
|
|
# mean that the evaluator always keeps track of its position. If there
|
|
|
|
# are too many levels of indirection, the position gets lost at some point.
|
|
|
|
intermediatePos = builtins.unsafeGetAttrPos "modules" args;
|
|
|
|
in
|
|
|
|
if intermediatePos == null then null else intermediatePos.file;
|
2021-07-11 00:33:17 +01:00
|
|
|
|
|
|
|
# Add the invoking file as error message location for modules
|
|
|
|
# that don't have their own locations; presumably inline modules.
|
|
|
|
addModuleDeclarationFile =
|
2021-07-18 18:09:38 +01:00
|
|
|
m: if moduleDeclarationFile == null then m else {
|
2021-07-11 00:33:17 +01:00
|
|
|
_file = moduleDeclarationFile;
|
|
|
|
imports = [ m ];
|
|
|
|
};
|
|
|
|
|
2020-09-11 07:12:58 +01:00
|
|
|
in
|
2021-07-11 00:33:17 +01:00
|
|
|
map addModuleDeclarationFile modules ++ [
|
2020-09-11 07:12:58 +01:00
|
|
|
{
|
|
|
|
system.nixos.versionSuffix =
|
2020-10-12 22:12:41 +01:00
|
|
|
".${final.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}.${self.shortRev or "dirty"}";
|
2020-07-23 16:36:45 +01:00
|
|
|
system.nixos.revision = final.mkIf (self ? rev) self.rev;
|
2020-09-11 07:12:58 +01:00
|
|
|
|
|
|
|
system.build = {
|
|
|
|
vm = vmConfig.system.build.vm;
|
|
|
|
vmWithBootLoader = vmWithBootLoaderConfig.system.build.vm;
|
|
|
|
};
|
2019-09-13 17:26:38 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
});
|
2020-07-23 16:36:45 +01:00
|
|
|
});
|
2019-02-11 11:27:17 +00:00
|
|
|
|
2020-02-10 15:25:33 +00:00
|
|
|
checks.x86_64-linux.tarball = jobs.tarball;
|
2019-05-29 20:21:56 +01:00
|
|
|
|
2019-06-19 11:43:26 +01:00
|
|
|
htmlDocs = {
|
|
|
|
nixpkgsManual = jobs.manual;
|
|
|
|
nixosManual = (import ./nixos/release-small.nix {
|
2019-08-30 10:48:43 +01:00
|
|
|
nixpkgs = self;
|
2019-06-19 11:43:26 +01:00
|
|
|
}).nixos.manual.x86_64-linux;
|
|
|
|
};
|
|
|
|
|
2019-10-15 17:17:21 +01:00
|
|
|
legacyPackages = forAllSystems (system: import ./. { inherit system; });
|
2019-09-13 18:01:23 +01:00
|
|
|
|
|
|
|
nixosModules = {
|
2020-02-10 15:25:33 +00:00
|
|
|
notDetected = import ./nixos/modules/installer/scan/not-detected.nix;
|
2019-09-13 18:01:23 +01:00
|
|
|
};
|
2019-02-11 11:27:17 +00:00
|
|
|
};
|
|
|
|
}
|