2020-02-10 16:36:53 +01:00
|
|
|
# Experimental flake interface to Nixpkgs.
|
|
|
|
# See https://github.com/NixOS/rfcs/pull/49 for details.
|
2019-02-11 12:27:17 +01:00
|
|
|
{
|
|
|
|
description = "A collection of packages for the Nix package manager";
|
|
|
|
|
2019-08-30 11:48:43 +02:00
|
|
|
outputs = { self }:
|
2019-06-19 12:43:26 +02:00
|
|
|
let
|
2023-10-31 13:38:29 +01:00
|
|
|
libVersionInfoOverlay = import ./lib/flake-version-info.nix self;
|
2023-09-06 15:08:46 +02:00
|
|
|
lib = (import ./lib).extend libVersionInfoOverlay;
|
|
|
|
|
2022-11-08 19:38:35 +01:00
|
|
|
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
|
2024-06-07 06:18:15 +02:00
|
|
|
|
|
|
|
jobs = forAllSystems (system: import ./pkgs/top-level/release.nix {
|
|
|
|
nixpkgs = self;
|
|
|
|
inherit system;
|
|
|
|
});
|
2019-06-19 12:43:26 +02:00
|
|
|
in
|
2019-02-11 12:27:17 +01:00
|
|
|
{
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
|
|
|
`nixpkgs.lib` is a combination of the [Nixpkgs library](https://nixos.org/manual/nixpkgs/unstable/#id-1.4), and other attributes
|
|
|
|
that are _not_ part of the Nixpkgs library, but part of the Nixpkgs flake:
|
|
|
|
|
|
|
|
- `lib.nixosSystem` for creating a NixOS system configuration
|
|
|
|
|
|
|
|
- `lib.nixos` for other NixOS-provided functionality, such as [`runTest`](https://nixos.org/manual/nixos/unstable/#sec-call-nixos-test-outside-nixos)
|
|
|
|
*/
|
2020-07-23 17:36:45 +02:00
|
|
|
lib = lib.extend (final: prev: {
|
2022-01-02 14:11:21 +01:00
|
|
|
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
|
|
|
Other NixOS-provided functionality, such as [`runTest`](https://nixos.org/manual/nixos/unstable/#sec-call-nixos-test-outside-nixos).
|
|
|
|
See also `lib.nixosSystem`.
|
|
|
|
*/
|
2022-01-02 14:11:21 +01:00
|
|
|
nixos = import ./nixos/lib { lib = final; };
|
|
|
|
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
|
|
|
Create a NixOS system configuration.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
lib.nixosSystem {
|
|
|
|
modules = [ ./configuration.nix ];
|
|
|
|
}
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
|
|
|
|
- `modules` (list of paths or inline modules): The NixOS modules to include in the system configuration.
|
|
|
|
|
|
|
|
- `specialArgs` (attribute set): Extra arguments to pass to all modules, that are available in `imports` but can not be extended or overridden by the `modules`.
|
|
|
|
|
|
|
|
- `modulesLocation` (path): A default location for modules that aren't passed by path, used for error messages.
|
|
|
|
|
|
|
|
Legacy inputs:
|
|
|
|
|
|
|
|
- `system`: Legacy alias for `nixpkgs.hostPlatform`, but this is already set in the generated `hardware-configuration.nix`, included by `configuration.nix`.
|
|
|
|
- `pkgs`: Legacy alias for `nixpkgs.pkgs`; use `nixpkgs.pkgs` and `nixosModules.readOnlyPkgs` instead.
|
|
|
|
*/
|
2021-12-17 15:30:32 +01:00
|
|
|
nixosSystem = args:
|
2022-06-09 11:38:30 +02:00
|
|
|
import ./nixos/lib/eval-config.nix (
|
2023-12-13 10:20:58 +01:00
|
|
|
{
|
|
|
|
lib = final;
|
2022-06-09 11:38:30 +02: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 17:41:57 +01: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 11:38:30 +02:00
|
|
|
);
|
2020-07-23 17:36:45 +02:00
|
|
|
});
|
2019-02-11 12:27:17 +01:00
|
|
|
|
2024-06-07 06:20:49 +02:00
|
|
|
checks = forAllSystems (system: {
|
|
|
|
tarball = jobs.${system}.tarball;
|
2024-06-18 01:35:20 +02:00
|
|
|
# Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64
|
2024-09-24 17:50:49 +02:00
|
|
|
} // lib.optionalAttrs (self.legacyPackages.${system}.stdenv.hostPlatform.isLinux && !self.legacyPackages.${system}.targetPlatform.isPower64) {
|
2023-12-29 01:08:45 +01:00
|
|
|
# Test that ensures that the nixosSystem function can accept a lib argument
|
2023-12-30 11:25:54 +01: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 01:08:45 +01:00
|
|
|
nixosSystemAcceptsLib = (self.lib.nixosSystem {
|
2024-06-07 06:20:49 +02:00
|
|
|
pkgs = self.legacyPackages.${system};
|
2023-12-29 01:08:45 +01:00
|
|
|
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 11:25:54 +01:00
|
|
|
# See https://search.nixos.org/options?show=system.stateVersion&query=stateversion
|
2024-09-08 13:05:28 +02:00
|
|
|
system.stateVersion = lib.trivial.release; # DON'T do this in real configs!
|
2023-12-29 01:08:45 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
}).config.system.build.toplevel;
|
2024-06-07 06:20:49 +02:00
|
|
|
});
|
2019-05-29 21:21:56 +02:00
|
|
|
|
2019-06-19 12:43:26 +02:00
|
|
|
htmlDocs = {
|
2024-06-07 06:20:49 +02:00
|
|
|
nixpkgsManual = builtins.mapAttrs (_: jobSet: jobSet.manual) jobs;
|
2019-06-19 12:43:26 +02:00
|
|
|
nixosManual = (import ./nixos/release-small.nix {
|
2019-08-30 11:48:43 +02:00
|
|
|
nixpkgs = self;
|
2024-06-07 06:20:49 +02:00
|
|
|
}).nixos.manual;
|
2019-06-19 12:43:26 +02:00
|
|
|
};
|
|
|
|
|
2024-08-10 04:25:59 +02:00
|
|
|
devShells = forAllSystems (system: {
|
2024-09-20 12:47:13 +02:00
|
|
|
/** A shell to get tooling for Nixpkgs development. See nixpkgs/shell.nix. */
|
2024-08-10 04:25:59 +02:00
|
|
|
default = import ./shell.nix { inherit system; };
|
|
|
|
});
|
|
|
|
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
|
|
|
A nested structure of [packages](https://nix.dev/manual/nix/latest/glossary#package-attribute-set) and other values.
|
|
|
|
|
|
|
|
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
|
|
|
|
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.
|
|
|
|
|
|
|
|
The reason why finding the tree structure of `legacyPackages` is slow,
|
|
|
|
is that for each attribute in the tree, it is necessary to check whether
|
|
|
|
the attribute value is a package or a package set that needs further
|
|
|
|
evaluation. Evaluating the attribute value tends to require a significant
|
|
|
|
amount of computation, even considering lazy evaluation.
|
|
|
|
*/
|
2023-12-09 11:57:56 +01:00
|
|
|
legacyPackages = forAllSystems (system:
|
2023-12-10 13:25:14 +01:00
|
|
|
(import ./. { inherit system; }).extend (final: prev: {
|
|
|
|
lib = prev.lib.extend libVersionInfoOverlay;
|
|
|
|
})
|
2023-12-09 11:57:56 +01:00
|
|
|
);
|
2019-09-13 19:01:23 +02:00
|
|
|
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
|
|
|
Optional modules that can be imported into a NixOS configuration.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
# flake.nix
|
|
|
|
outputs = { nixpkgs, ... }: {
|
|
|
|
nixosConfigurations = {
|
|
|
|
foo = nixpkgs.lib.nixosSystem {
|
|
|
|
modules = [
|
|
|
|
./foo/configuration.nix
|
|
|
|
nixpkgs.nixosModules.notDetected
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
*/
|
2019-09-13 19:01:23 +02:00
|
|
|
nixosModules = {
|
2022-10-06 16:52:38 +02:00
|
|
|
notDetected = ./nixos/modules/installer/scan/not-detected.nix;
|
2023-05-07 15:37:28 +02:00
|
|
|
|
2024-09-20 12:47:13 +02:00
|
|
|
/**
|
2023-05-07 15:37:28 +02: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 19:01:23 +02:00
|
|
|
};
|
2019-02-11 12:27:17 +01:00
|
|
|
};
|
|
|
|
}
|