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
|
|
|
|
2023-10-31 12:38:29 +00:00
|
|
|
libVersionInfoOverlay = import ./lib/flake-version-info.nix self;
|
2023-09-06 14:08:46 +01:00
|
|
|
lib = (import ./lib).extend libVersionInfoOverlay;
|
|
|
|
|
2022-11-08 18:38:35 +00:00
|
|
|
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
|
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: {
|
2022-01-02 13:11:21 +00:00
|
|
|
|
|
|
|
nixos = import ./nixos/lib { lib = final; };
|
|
|
|
|
2021-12-17 14:30:32 +00:00
|
|
|
nixosSystem = args:
|
2022-06-09 10:38:30 +01:00
|
|
|
import ./nixos/lib/eval-config.nix (
|
2023-12-13 09:20:58 +00:00
|
|
|
{
|
|
|
|
lib = final;
|
2022-06-09 10:38:30 +01:00
|
|
|
# Allow system to be set modularly in nixpkgs.system.
|
|
|
|
# We set it to null, to remove the "legacy" entrypoint's
|
|
|
|
# non-hermetic default.
|
|
|
|
system = null;
|
2024-01-03 16:41:57 +00:00
|
|
|
|
|
|
|
modules = args.modules ++ [
|
|
|
|
# This module is injected here since it exposes the nixpkgs self-path in as
|
|
|
|
# constrained of contexts as possible to avoid more things depending on it and
|
|
|
|
# introducing unnecessary potential fragility to changes in flakes itself.
|
|
|
|
#
|
|
|
|
# See: failed attempt to make pkgs.path not copy when using flakes:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/153594#issuecomment-1023287913
|
|
|
|
({ config, pkgs, lib, ... }: {
|
|
|
|
config.nixpkgs.flake.source = self.outPath;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
} // builtins.removeAttrs args [ "modules" ]
|
2022-06-09 10:38:30 +01:00
|
|
|
);
|
2020-07-23 16:36:45 +01:00
|
|
|
});
|
2019-02-11 11:27:17 +00:00
|
|
|
|
2023-12-29 00:08:45 +00:00
|
|
|
checks.x86_64-linux = {
|
|
|
|
tarball = jobs.tarball;
|
|
|
|
# Test that ensures that the nixosSystem function can accept a lib argument
|
2023-12-30 10:25:54 +00:00
|
|
|
# Note: prefer not to extend or modify `lib`, especially if you want to share reusable modules
|
|
|
|
# alternatives include: `import` a file, or put a custom library in an option or in `_module.args.<libname>`
|
2023-12-29 00:08:45 +00:00
|
|
|
nixosSystemAcceptsLib = (self.lib.nixosSystem {
|
|
|
|
lib = self.lib.extend (final: prev: {
|
|
|
|
ifThisFunctionIsMissingTheTestFails = final.id;
|
|
|
|
});
|
|
|
|
modules = [
|
|
|
|
./nixos/modules/profiles/minimal.nix
|
|
|
|
({ lib, ... }: lib.ifThisFunctionIsMissingTheTestFails {
|
|
|
|
# Define a minimal config without eval warnings
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
fileSystems."/".device = "nodev";
|
2023-12-30 10:25:54 +00:00
|
|
|
# See https://search.nixos.org/options?show=system.stateVersion&query=stateversion
|
|
|
|
system.stateVersion = lib.versions.majorMinor lib.version; # DON'T do this in real configs!
|
2023-12-29 00:08:45 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
}).config.system.build.toplevel;
|
|
|
|
};
|
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;
|
|
|
|
};
|
|
|
|
|
2022-10-26 19:03:19 +01:00
|
|
|
# The "legacy" in `legacyPackages` doesn't imply that the packages exposed
|
|
|
|
# through this attribute are "legacy" packages. Instead, `legacyPackages`
|
|
|
|
# is used here as a substitute attribute name for `packages`. The problem
|
|
|
|
# with `packages` is that it makes operations like `nix flake show
|
|
|
|
# nixpkgs` unusably slow due to the sheer number of packages the Nix CLI
|
2022-10-28 19:31:47 +01:00
|
|
|
# needs to evaluate. But when the Nix CLI sees a `legacyPackages`
|
|
|
|
# attribute it displays `omitted` instead of evaluating all packages,
|
|
|
|
# which keeps `nix flake show` on Nixpkgs reasonably fast, though less
|
|
|
|
# information rich.
|
2023-12-09 10:57:56 +00:00
|
|
|
legacyPackages = forAllSystems (system:
|
2023-12-10 12:25:14 +00:00
|
|
|
(import ./. { inherit system; }).extend (final: prev: {
|
|
|
|
lib = prev.lib.extend libVersionInfoOverlay;
|
|
|
|
})
|
2023-12-09 10:57:56 +00:00
|
|
|
);
|
2019-09-13 18:01:23 +01:00
|
|
|
|
|
|
|
nixosModules = {
|
2022-10-06 15:52:38 +01:00
|
|
|
notDetected = ./nixos/modules/installer/scan/not-detected.nix;
|
2023-05-07 14:37:28 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Make the `nixpkgs.*` configuration read-only. Guarantees that `pkgs`
|
|
|
|
is the way you initialize it.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [ nixpkgs.nixosModules.readOnlyPkgs ];
|
|
|
|
nixpkgs.pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
readOnlyPkgs = ./nixos/modules/misc/nixpkgs/read-only.nix;
|
2019-09-13 18:01:23 +01:00
|
|
|
};
|
2019-02-11 11:27:17 +00:00
|
|
|
};
|
|
|
|
}
|