2009-05-29 12:43:29 +00:00
|
|
|
# This module generates nixos-install, nixos-rebuild,
|
|
|
|
# nixos-hardware-scan, etc.
|
|
|
|
|
2011-04-25 01:03:57 +00:00
|
|
|
{config, pkgs, modulesPath, ...}:
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
### implementation
|
2011-04-25 01:03:57 +00:00
|
|
|
cfg = config.installer;
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
|
|
makeProg = args: pkgs.substituteAll (args // {
|
|
|
|
dir = "bin";
|
|
|
|
isExecutable = true;
|
|
|
|
});
|
2011-04-25 01:03:57 +00:00
|
|
|
|
2010-10-21 22:50:12 +00:00
|
|
|
nixosBuildVMS = makeProg {
|
|
|
|
name = "nixos-build-vms";
|
|
|
|
src = ./nixos-build-vms/nixos-build-vms.sh;
|
|
|
|
};
|
2011-04-25 01:03:57 +00:00
|
|
|
|
2010-10-07 14:30:52 +00:00
|
|
|
nixosDeployNetwork = makeProg {
|
|
|
|
name = "nixos-deploy-network";
|
|
|
|
src = ./nixos-deploy-network/nixos-deploy-network.sh;
|
|
|
|
};
|
2011-04-25 01:03:57 +00:00
|
|
|
|
2009-05-29 12:43:29 +00:00
|
|
|
nixosInstall = makeProg {
|
|
|
|
name = "nixos-install";
|
|
|
|
src = ./nixos-install.sh;
|
|
|
|
|
2009-06-08 22:43:41 +00:00
|
|
|
inherit (pkgs) perl pathsFromGraph;
|
2009-05-29 12:43:29 +00:00
|
|
|
nix = config.environment.nix;
|
2011-04-25 01:03:57 +00:00
|
|
|
nixpkgsURL = cfg.nixpkgsURL;
|
2009-05-29 12:43:29 +00:00
|
|
|
|
|
|
|
nixClosure = pkgs.runCommand "closure"
|
|
|
|
{exportReferencesGraph = ["refs" config.environment.nix];}
|
|
|
|
"cp refs $out";
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosRebuild = makeProg {
|
|
|
|
name = "nixos-rebuild";
|
|
|
|
src = ./nixos-rebuild.sh;
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosGenSeccureKeys = makeProg {
|
|
|
|
name = "nixos-gen-seccure-keys";
|
|
|
|
src = ./nixos-gen-seccure-keys.sh;
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosHardwareScan = makeProg {
|
|
|
|
name = "nixos-hardware-scan";
|
|
|
|
src = ./nixos-hardware-scan.pl;
|
|
|
|
inherit (pkgs) perl;
|
|
|
|
};
|
|
|
|
|
2010-09-03 19:10:50 +00:00
|
|
|
nixosOption = makeProg {
|
|
|
|
name = "nixos-option";
|
|
|
|
src = ./nixos-option.sh;
|
|
|
|
};
|
|
|
|
|
2011-04-25 01:03:57 +00:00
|
|
|
nixosGui = pkgs.xulrunnerWrapper {
|
|
|
|
launcher = "nixos-gui";
|
|
|
|
application = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-gui";
|
|
|
|
buildCommand = ''
|
2011-04-25 17:48:59 +00:00
|
|
|
cp -r "$gui" "$out"
|
|
|
|
|
|
|
|
# Do not force the copy if the file exists in the sources (this
|
|
|
|
# happens for developpers)
|
|
|
|
test -e "$out/chrome/content/jquery-1.5.2.js" ||
|
|
|
|
cp -f "$jquery" "$out/chrome/content/jquery-1.5.2.js"
|
2011-04-25 01:03:57 +00:00
|
|
|
'';
|
2011-04-25 17:48:59 +00:00
|
|
|
gui = pkgs.lib.cleanSource "${modulesPath}/../gui";
|
2011-04-25 01:03:57 +00:00
|
|
|
jquery = pkgs.fetchurl {
|
|
|
|
url = http://code.jquery.com/jquery-1.5.2.min.js;
|
2011-04-25 17:48:59 +00:00
|
|
|
sha256 = "8f0a19ee8c606b35a10904951e0a27da1896eafe33c6e88cb7bcbe455f05a24a";
|
2011-04-25 01:03:57 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-05-29 12:43:29 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2010-09-03 19:10:54 +00:00
|
|
|
options = {
|
2011-04-25 01:03:57 +00:00
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
installer.nixpkgsURL = pkgs.lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
example = http://nixos.org/releases/nix/nixpkgs-0.11pre7577;
|
|
|
|
description = ''
|
|
|
|
URL of the Nixpkgs distribution to use when building the
|
|
|
|
installation CD.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
installer.manifests = pkgs.lib.mkOption {
|
|
|
|
default = [http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable/MANIFEST];
|
|
|
|
example =
|
|
|
|
[ http://nixos.org/releases/nixpkgs/channels/nixpkgs-unstable/MANIFEST
|
|
|
|
http://nixos.org/releases/nixpkgs/channels/nixpkgs-stable/MANIFEST
|
|
|
|
];
|
|
|
|
description = ''
|
|
|
|
URLs of manifests to be downloaded when you run
|
|
|
|
<command>nixos-rebuild</command> to speed up builds.
|
|
|
|
'';
|
|
|
|
};
|
2010-09-25 09:33:13 +00:00
|
|
|
|
2011-04-25 01:03:57 +00:00
|
|
|
installer.enableGraphicalTools = pkgs.lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
type = with pkgs.lib.types; bool;
|
|
|
|
example = true;
|
|
|
|
description = ''
|
|
|
|
Enable the installation of graphical tools.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
};
|
2009-05-29 12:43:29 +00:00
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
config = {
|
|
|
|
environment.systemPackages =
|
2010-10-21 22:50:12 +00:00
|
|
|
[ nixosBuildVMS
|
|
|
|
nixosDeployNetwork
|
2010-10-07 14:30:52 +00:00
|
|
|
nixosInstall
|
2010-09-03 19:10:54 +00:00
|
|
|
nixosRebuild
|
2011-04-27 16:16:47 +00:00
|
|
|
nixosHardwareScan
|
|
|
|
nixosGenSeccureKeys
|
|
|
|
nixosOption
|
2011-04-25 01:03:57 +00:00
|
|
|
] ++ pkgs.lib.optional cfg.enableGraphicalTools nixosGui;
|
2009-09-13 22:13:19 +00:00
|
|
|
|
2010-09-03 19:10:54 +00:00
|
|
|
system.build = {
|
2010-09-26 13:39:16 +00:00
|
|
|
inherit nixosInstall nixosHardwareScan nixosOption;
|
2010-09-03 19:10:54 +00:00
|
|
|
};
|
2009-12-15 06:37:32 +00:00
|
|
|
};
|
2009-05-29 12:43:29 +00:00
|
|
|
}
|