mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
8d5e27b480
* nix: add options 'nixPath' and 'keepOldNixPath' By default, the system value for $NIX_PATH is kept as a fallback. To completely override the system value for $NIX_PATH: nix.keepOldNixPath = false; * nix: add more tests * nix: add a declarative alternative to Nix channels This adds a new option, 'nix.channels'. It's the Nix channels equivalent of the 'nix.registry' option, and compatible with pre-Flake Nix tooling including nix-env and nix-shell. Like 'nix.registry', this option is useful for pinning Nix channels. Channels defined in the new option can coexist with channels introduced through the nix-channel command. If the same channel exists in both, the one from Home Manager will be prioritized. * nix: add news entry * nix: make channels respect use-xdg-base-directories * nix: remove 'with lib;' --------- Co-authored-by: Michael Hoang <enzime@users.noreply.github.com>
38 lines
832 B
Nix
38 lines
832 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
nix = {
|
|
package = config.lib.test.mkStubPackage {
|
|
version = lib.getVersion pkgs.nixVersions.stable;
|
|
buildScript = ''
|
|
target=$out/bin/nix
|
|
mkdir -p "$(dirname "$target")"
|
|
|
|
echo -n "true" > "$target"
|
|
|
|
chmod +x "$target"
|
|
'';
|
|
};
|
|
|
|
nixPath = [ "/a" "/b/c" ];
|
|
|
|
settings = {
|
|
use-sandbox = true;
|
|
show-trace = true;
|
|
system-features = [ "big-parallel" "kvm" "recursive-nix" ];
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/nix/nix.conf \
|
|
${./example-settings-expected.conf}
|
|
|
|
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
|
|
'export NIX_PATH="/a:/b/c''${NIX_PATH:+:$NIX_PATH}"'
|
|
'';
|
|
};
|
|
}
|