2017-10-20 23:22:47 +02:00
|
|
|
# Adapted from Nixpkgs.
|
|
|
|
|
2020-07-31 00:33:12 +02:00
|
|
|
{ config, lib, pkgs, pkgsPath, ... }:
|
2017-10-20 23:22:47 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
isConfig = x: builtins.isAttrs x || builtins.isFunction x;
|
2017-10-20 23:22:47 +02:00
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
optCall = f: x: if builtins.isFunction f then f x else f;
|
2017-10-20 23:22:47 +02:00
|
|
|
|
|
|
|
mergeConfig = lhs_: rhs_:
|
|
|
|
let
|
|
|
|
lhs = optCall lhs_ { inherit pkgs; };
|
|
|
|
rhs = optCall rhs_ { inherit pkgs; };
|
2021-07-18 23:34:50 +02:00
|
|
|
in lhs // rhs // optionalAttrs (lhs ? packageOverrides) {
|
2017-10-20 23:22:47 +02:00
|
|
|
packageOverrides = pkgs:
|
2021-07-18 23:34:50 +02:00
|
|
|
optCall lhs.packageOverrides pkgs
|
|
|
|
// optCall (attrByPath [ "packageOverrides" ] ({ }) rhs) pkgs;
|
|
|
|
} // optionalAttrs (lhs ? perlPackageOverrides) {
|
2017-10-20 23:22:47 +02:00
|
|
|
perlPackageOverrides = pkgs:
|
2021-07-18 23:34:50 +02:00
|
|
|
optCall lhs.perlPackageOverrides pkgs
|
|
|
|
// optCall (attrByPath [ "perlPackageOverrides" ] ({ }) rhs) pkgs;
|
2017-10-20 23:22:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configType = mkOptionType {
|
|
|
|
name = "nixpkgs-config";
|
|
|
|
description = "nixpkgs config";
|
2018-07-04 19:54:27 +02:00
|
|
|
check = x:
|
2021-07-18 23:34:50 +02:00
|
|
|
let traceXIfNot = c: if c x then true else lib.traceSeqN 1 x false;
|
2018-07-04 19:54:27 +02:00
|
|
|
in traceXIfNot isConfig;
|
2021-07-18 23:34:50 +02:00
|
|
|
merge = args: fold (def: mergeConfig def.value) { };
|
2017-10-20 23:22:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
overlayType = mkOptionType {
|
|
|
|
name = "nixpkgs-overlay";
|
|
|
|
description = "nixpkgs overlay";
|
|
|
|
check = builtins.isFunction;
|
|
|
|
merge = lib.mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
_pkgs = import pkgsPath (filterAttrs (n: v: v != null) config.nixpkgs);
|
2017-10-20 23:22:47 +02:00
|
|
|
|
2021-07-18 23:34:50 +02:00
|
|
|
in {
|
2017-10-20 23:22:47 +02:00
|
|
|
options.nixpkgs = {
|
|
|
|
config = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = { allowBroken = true; };
|
|
|
|
type = types.nullOr configType;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2017-10-20 23:22:47 +02:00
|
|
|
The configuration of the Nix Packages collection. (For
|
|
|
|
details, see the Nixpkgs documentation.) It allows you to set
|
|
|
|
package configuration options.
|
2018-03-17 17:08:41 +01:00
|
|
|
|
2023-07-01 01:30:13 +02:00
|
|
|
If `null`, then configuration is taken from
|
2017-10-20 23:22:47 +02:00
|
|
|
the fallback location, for example,
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`~/.config/nixpkgs/config.nix`.
|
2018-03-17 17:08:41 +01:00
|
|
|
|
|
|
|
Note, this option will not apply outside your Home Manager
|
|
|
|
configuration like when installing manually through
|
2023-07-01 01:30:13 +02:00
|
|
|
{command}`nix-env`. If you want to apply it both
|
2018-03-17 17:08:41 +01:00
|
|
|
inside and outside Home Manager you can put it in a separate
|
|
|
|
file and include something like
|
|
|
|
|
2023-07-01 01:30:13 +02:00
|
|
|
```nix
|
2018-03-17 17:08:41 +01:00
|
|
|
nixpkgs.config = import ./nixpkgs-config.nix;
|
2019-08-21 20:19:33 +02:00
|
|
|
xdg.configFile."nixpkgs/config.nix".source = ./nixpkgs-config.nix;
|
2023-07-01 01:30:13 +02:00
|
|
|
```
|
2018-03-17 17:08:41 +01:00
|
|
|
|
|
|
|
in your Home Manager configuration.
|
2017-10-20 23:22:47 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
overlays = mkOption {
|
|
|
|
default = null;
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2023-03-28 12:46:08 +02:00
|
|
|
[
|
|
|
|
(final: prev: {
|
|
|
|
openssh = prev.openssh.override {
|
2021-07-18 23:34:50 +02:00
|
|
|
hpnSupport = true;
|
|
|
|
withKerberos = true;
|
2023-03-28 12:46:08 +02:00
|
|
|
kerberos = final.libkrb5;
|
2017-10-20 23:22:47 +02:00
|
|
|
};
|
2023-03-28 12:46:08 +02:00
|
|
|
})
|
|
|
|
]
|
2021-07-18 23:34:50 +02:00
|
|
|
'';
|
2017-10-20 23:22:47 +02:00
|
|
|
type = types.nullOr (types.listOf overlayType);
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2017-10-20 23:22:47 +02:00
|
|
|
List of overlays to use with the Nix Packages collection. (For
|
|
|
|
details, see the Nixpkgs documentation.) It allows you to
|
|
|
|
override packages globally. This is a function that takes as
|
2023-07-01 01:30:13 +02:00
|
|
|
an argument the *original* Nixpkgs. The
|
2017-10-20 23:22:47 +02:00
|
|
|
first argument should be used for finding dependencies, and
|
|
|
|
the second should be used for overriding recipes.
|
2018-03-17 17:08:41 +01:00
|
|
|
|
2023-07-01 01:30:13 +02:00
|
|
|
If `null`, then the overlays are taken from
|
2017-10-20 23:22:47 +02:00
|
|
|
the fallback location, for example,
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`~/.config/nixpkgs/overlays`.
|
2018-03-17 17:08:41 +01:00
|
|
|
|
2023-07-01 01:30:13 +02:00
|
|
|
Like {var}`nixpkgs.config` this option only
|
2018-03-17 17:08:41 +01:00
|
|
|
applies within the Home Manager configuration. See
|
2023-07-01 01:30:13 +02:00
|
|
|
{var}`nixpkgs.config` for a suggested setup that
|
2018-03-17 17:08:41 +01:00
|
|
|
works both internally and externally.
|
2017-10-20 23:22:47 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
system = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
example = "i686-linux";
|
|
|
|
internal = true;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2017-10-20 23:22:47 +02:00
|
|
|
Specifies the Nix platform type for which the user environment
|
|
|
|
should be built. If unset, it defaults to the platform type of
|
|
|
|
your host system. Specifying this option is useful when doing
|
|
|
|
distributed multi-platform deployment, or when building
|
|
|
|
virtual machines.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
_module.args = {
|
2023-06-09 11:57:20 +02:00
|
|
|
# We use a no-op override to make sure that the option can be merged without evaluating
|
|
|
|
# `_pkgs`, see https://github.com/nix-community/home-manager/pull/993
|
|
|
|
pkgs = mkOverride modules.defaultOverridePriority _pkgs;
|
2019-01-28 07:09:28 +01:00
|
|
|
pkgs_i686 =
|
2021-07-18 23:34:50 +02:00
|
|
|
if _pkgs.stdenv.isLinux && _pkgs.stdenv.hostPlatform.isx86 then
|
|
|
|
_pkgs.pkgsi686Linux
|
|
|
|
else
|
|
|
|
{ };
|
2017-10-20 23:22:47 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|