2013-07-01 21:13:28 +00:00
|
|
|
# Provide an initial copy of the NixOS channel so that the user
|
|
|
|
# doesn't need to run "nix-channel --update" first.
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-07-01 21:13:28 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-07-01 21:13:28 +00:00
|
|
|
|
|
|
|
let
|
2017-08-30 00:27:04 +00:00
|
|
|
nixpkgs = lib.cleanSource pkgs.path;
|
2013-07-01 21:13:28 +00:00
|
|
|
|
|
|
|
# We need a copy of the Nix expressions for Nixpkgs and NixOS on the
|
|
|
|
# CD. These are installed into the "nixos" channel of the root
|
2015-08-05 15:29:08 +00:00
|
|
|
# user, as expected by nixos-rebuild/nixos-install. FIXME: merge
|
|
|
|
# with make-channel.nix.
|
2017-04-01 00:00:00 +00:00
|
|
|
channelSources = pkgs.runCommand "nixos-${config.system.nixos.version}"
|
2015-08-05 15:29:08 +00:00
|
|
|
{ }
|
2013-07-01 21:13:28 +00:00
|
|
|
''
|
2015-08-05 15:29:08 +00:00
|
|
|
mkdir -p $out
|
2018-12-20 22:17:05 +00:00
|
|
|
cp -prd ${nixpkgs.outPath} $out/nixos
|
2013-10-01 13:48:39 +00:00
|
|
|
chmod -R u+w $out/nixos
|
2016-01-16 20:55:29 +00:00
|
|
|
if [ ! -e $out/nixos/nixpkgs ]; then
|
|
|
|
ln -s . $out/nixos/nixpkgs
|
|
|
|
fi
|
2018-04-12 15:15:42 +00:00
|
|
|
echo -n ${config.system.nixos.revision} > $out/nixos/.git-revision
|
2017-04-01 00:00:00 +00:00
|
|
|
echo -n ${config.system.nixos.versionSuffix} > $out/nixos/.version-suffix
|
2018-04-12 15:15:42 +00:00
|
|
|
echo ${config.system.nixos.versionSuffix} | sed -e s/pre// > $out/nixos/svn-revision
|
2013-07-01 21:13:28 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
# Provide the NixOS/Nixpkgs sources in /etc/nixos. This is required
|
|
|
|
# for nixos-install.
|
2014-04-03 14:26:03 +00:00
|
|
|
boot.postBootCommands = mkAfter
|
2013-07-01 21:13:28 +00:00
|
|
|
''
|
2013-07-01 22:21:56 +00:00
|
|
|
if ! [ -e /var/lib/nixos/did-channel-init ]; then
|
|
|
|
echo "unpacking the NixOS/Nixpkgs sources..."
|
|
|
|
mkdir -p /nix/var/nix/profiles/per-user/root
|
2016-04-24 10:57:19 +00:00
|
|
|
${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/per-user/root/channels \
|
2015-09-25 15:44:36 +00:00
|
|
|
-i ${channelSources} --quiet --option build-use-substitutes false
|
2013-07-01 22:21:56 +00:00
|
|
|
mkdir -m 0700 -p /root/.nix-defexpr
|
|
|
|
ln -s /nix/var/nix/profiles/per-user/root/channels /root/.nix-defexpr/channels
|
|
|
|
mkdir -m 0755 -p /var/lib/nixos
|
|
|
|
touch /var/lib/nixos/did-channel-init
|
|
|
|
fi
|
2013-07-01 21:13:28 +00:00
|
|
|
'';
|
|
|
|
}
|