2009-05-29 14:43:29 +02:00
|
|
|
# This module generates nixos-install, nixos-rebuild,
|
|
|
|
# nixos-hardware-scan, etc.
|
|
|
|
|
2012-12-08 19:00:06 +01:00
|
|
|
{ config, pkgs, modulesPath, ... }:
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
### implementation
|
2011-04-25 03:03:57 +02:00
|
|
|
cfg = config.installer;
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
|
|
makeProg = args: pkgs.substituteAll (args // {
|
|
|
|
dir = "bin";
|
|
|
|
isExecutable = true;
|
|
|
|
});
|
2011-04-25 03:03:57 +02:00
|
|
|
|
2010-10-22 00:50:12 +02:00
|
|
|
nixosBuildVMS = makeProg {
|
|
|
|
name = "nixos-build-vms";
|
|
|
|
src = ./nixos-build-vms/nixos-build-vms.sh;
|
|
|
|
};
|
2011-04-25 03:03:57 +02:00
|
|
|
|
2009-05-29 14:43:29 +02:00
|
|
|
nixosInstall = makeProg {
|
|
|
|
name = "nixos-install";
|
|
|
|
src = ./nixos-install.sh;
|
|
|
|
|
2009-06-09 00:43:41 +02:00
|
|
|
inherit (pkgs) perl pathsFromGraph;
|
2009-05-29 14:43:29 +02:00
|
|
|
nix = config.environment.nix;
|
|
|
|
|
|
|
|
nixClosure = pkgs.runCommand "closure"
|
2012-04-11 00:17:37 +02:00
|
|
|
{ exportReferencesGraph = ["refs" config.environment.nix]; }
|
2009-05-29 14:43:29 +02:00
|
|
|
"cp refs $out";
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosRebuild = makeProg {
|
|
|
|
name = "nixos-rebuild";
|
|
|
|
src = ./nixos-rebuild.sh;
|
|
|
|
};
|
|
|
|
|
2012-04-10 23:11:11 +02:00
|
|
|
/*
|
2009-05-29 14:43:29 +02:00
|
|
|
nixosGenSeccureKeys = makeProg {
|
|
|
|
name = "nixos-gen-seccure-keys";
|
|
|
|
src = ./nixos-gen-seccure-keys.sh;
|
|
|
|
};
|
2012-04-10 23:11:11 +02:00
|
|
|
*/
|
2009-05-29 14:43:29 +02:00
|
|
|
|
|
|
|
nixosHardwareScan = makeProg {
|
|
|
|
name = "nixos-hardware-scan";
|
|
|
|
src = ./nixos-hardware-scan.pl;
|
2012-03-16 02:57:23 +01:00
|
|
|
inherit (pkgs) perl dmidecode;
|
2009-05-29 14:43:29 +02:00
|
|
|
};
|
|
|
|
|
2010-09-03 21:10:50 +02:00
|
|
|
nixosOption = makeProg {
|
|
|
|
name = "nixos-option";
|
|
|
|
src = ./nixos-option.sh;
|
|
|
|
};
|
|
|
|
|
2012-04-10 22:56:38 +02:00
|
|
|
nixosVersion = makeProg {
|
|
|
|
name = "nixos-version";
|
|
|
|
src = ./nixos-version.sh;
|
|
|
|
inherit (config.system) nixosVersion;
|
|
|
|
};
|
|
|
|
|
2011-04-25 03:03:57 +02:00
|
|
|
nixosGui = pkgs.xulrunnerWrapper {
|
|
|
|
launcher = "nixos-gui";
|
|
|
|
application = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "nixos-gui";
|
|
|
|
buildCommand = ''
|
2011-04-25 19:48:59 +02: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 03:03:57 +02:00
|
|
|
'';
|
2011-04-25 19:48:59 +02:00
|
|
|
gui = pkgs.lib.cleanSource "${modulesPath}/../gui";
|
2011-04-25 03:03:57 +02:00
|
|
|
jquery = pkgs.fetchurl {
|
|
|
|
url = http://code.jquery.com/jquery-1.5.2.min.js;
|
2011-04-25 19:48:59 +02:00
|
|
|
sha256 = "8f0a19ee8c606b35a10904951e0a27da1896eafe33c6e88cb7bcbe455f05a24a";
|
2011-04-25 03:03:57 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-05-29 14:43:29 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2010-09-03 21:10:54 +02:00
|
|
|
options = {
|
2011-04-25 03:03:57 +02: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 21:10:54 +02:00
|
|
|
};
|
2009-05-29 14:43:29 +02:00
|
|
|
|
2010-09-03 21:10:54 +02:00
|
|
|
config = {
|
|
|
|
environment.systemPackages =
|
2010-10-22 00:50:12 +02:00
|
|
|
[ nixosBuildVMS
|
2010-10-07 16:30:52 +02:00
|
|
|
nixosInstall
|
2010-09-03 21:10:54 +02:00
|
|
|
nixosRebuild
|
2011-04-27 18:16:47 +02:00
|
|
|
nixosHardwareScan
|
2012-04-10 23:11:11 +02:00
|
|
|
#nixosGenSeccureKeys
|
2011-04-27 18:16:47 +02:00
|
|
|
nixosOption
|
2012-04-10 22:56:38 +02:00
|
|
|
nixosVersion
|
2011-04-25 03:03:57 +02:00
|
|
|
] ++ pkgs.lib.optional cfg.enableGraphicalTools nixosGui;
|
2009-09-14 00:13:19 +02:00
|
|
|
|
2010-09-03 21:10:54 +02:00
|
|
|
system.build = {
|
2010-09-26 15:39:16 +02:00
|
|
|
inherit nixosInstall nixosHardwareScan nixosOption;
|
2010-09-03 21:10:54 +02:00
|
|
|
};
|
2009-12-15 07:37:32 +01:00
|
|
|
};
|
2009-05-29 14:43:29 +02:00
|
|
|
}
|