2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2012-04-10 20:56:38 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2012-04-10 20:56:38 +00:00
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
let
|
|
|
|
cfg = config.system;
|
|
|
|
|
2016-05-24 22:34:28 +00:00
|
|
|
releaseFile = "${toString pkgs.path}/.version";
|
|
|
|
suffixFile = "${toString pkgs.path}/.version-suffix";
|
2015-09-18 13:46:47 +00:00
|
|
|
revisionFile = "${toString pkgs.path}/.git-revision";
|
2016-05-24 22:34:28 +00:00
|
|
|
gitRepo = "${toString pkgs.path}/.git";
|
|
|
|
gitCommitId = lib.substring 0 7 (commitIdFromGitRepo gitRepo);
|
2015-09-18 13:46:47 +00:00
|
|
|
in
|
|
|
|
|
2012-04-10 20:56:38 +00:00
|
|
|
{
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
options.system = {
|
2013-01-16 13:40:41 +00:00
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
stateVersion = mkOption {
|
2015-07-27 17:46:36 +00:00
|
|
|
type = types.str;
|
2015-09-18 13:46:47 +00:00
|
|
|
default = cfg.nixosRelease;
|
2015-07-27 17:46:36 +00:00
|
|
|
description = ''
|
|
|
|
Every once in a while, a new NixOS release may change
|
|
|
|
configuration defaults in a way incompatible with stateful
|
|
|
|
data. For instance, if the default version of PostgreSQL
|
|
|
|
changes, the new version will probably be unable to read your
|
|
|
|
existing databases. To prevent such breakage, you can set the
|
|
|
|
value of this option to the NixOS release with which you want
|
|
|
|
to be compatible. The effect is that NixOS will option
|
|
|
|
defaults corresponding to the specified release (such as using
|
|
|
|
an older version of PostgreSQL).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-09-18 16:50:48 +00:00
|
|
|
nixosLabel = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
2016-07-28 16:10:17 +00:00
|
|
|
Label to be used in the names of generated outputs and boot
|
|
|
|
labels.
|
2015-09-18 16:50:48 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
nixosVersion = mkOption {
|
2013-10-23 14:59:33 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2016-07-28 16:27:03 +00:00
|
|
|
description = "The full NixOS version (e.g. <literal>16.03.1160.f2d4ee1</literal>).";
|
2012-04-10 20:56:38 +00:00
|
|
|
};
|
2012-05-17 21:10:42 +00:00
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
nixosRelease = mkOption {
|
2015-07-30 11:36:57 +00:00
|
|
|
readOnly = true;
|
2015-07-27 17:46:36 +00:00
|
|
|
type = types.str;
|
2015-09-18 13:46:47 +00:00
|
|
|
default = readFile releaseFile;
|
2016-07-28 16:27:03 +00:00
|
|
|
description = "The NixOS release (e.g. <literal>16.03</literal>).";
|
2015-07-27 17:46:36 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
nixosVersionSuffix = mkOption {
|
2013-10-23 14:59:33 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2015-09-18 13:46:47 +00:00
|
|
|
default = if pathExists suffixFile then readFile suffixFile else "pre-git";
|
2016-07-28 16:27:03 +00:00
|
|
|
description = "The NixOS version suffix (e.g. <literal>1160.f2d4ee1</literal>).";
|
2013-01-16 13:40:41 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
nixosRevision = mkOption {
|
2013-10-24 17:58:34 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2015-09-18 13:46:47 +00:00
|
|
|
default = if pathExists revisionFile then readFile revisionFile else "master";
|
2016-07-28 16:27:03 +00:00
|
|
|
description = "The Git revision from which this NixOS configuration was built.";
|
2013-10-24 17:58:34 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
nixosCodeName = mkOption {
|
2015-07-30 11:36:57 +00:00
|
|
|
readOnly = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2016-07-28 16:27:03 +00:00
|
|
|
description = "The NixOS release code name (e.g. <literal>Emu</literal>).";
|
2013-07-17 11:34:40 +00:00
|
|
|
};
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
defaultChannel = mkOption {
|
2013-10-24 13:09:00 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2013-11-11 10:22:41 +00:00
|
|
|
default = https://nixos.org/channels/nixos-unstable;
|
2013-10-24 13:09:00 +00:00
|
|
|
description = "Default NixOS channel to which the root user is subscribed.";
|
|
|
|
};
|
|
|
|
|
2012-05-17 21:10:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
system = {
|
2015-09-18 16:50:48 +00:00
|
|
|
# These defaults are set here rather than up there so that
|
|
|
|
# changing them would not rebuild the manual
|
2016-07-28 16:10:17 +00:00
|
|
|
nixosLabel = mkDefault cfg.nixosVersion;
|
|
|
|
nixosVersion = mkDefault (cfg.nixosRelease + cfg.nixosVersionSuffix);
|
2016-06-02 15:03:35 +00:00
|
|
|
nixosRevision = mkIf (pathIsDirectory gitRepo) (mkDefault gitCommitId);
|
|
|
|
nixosVersionSuffix = mkIf (pathIsDirectory gitRepo) (mkDefault (".git." + gitCommitId));
|
2013-01-16 13:40:41 +00:00
|
|
|
|
2015-09-18 13:46:47 +00:00
|
|
|
# Note: code names must only increase in alphabetical order.
|
2016-03-14 19:09:54 +00:00
|
|
|
nixosCodeName = "Flounder";
|
2015-09-18 13:46:47 +00:00
|
|
|
};
|
2013-07-17 11:34:40 +00:00
|
|
|
|
2012-05-17 21:10:42 +00:00
|
|
|
# Generate /etc/os-release. See
|
|
|
|
# http://0pointer.de/public/systemd-man/os-release.html for the
|
|
|
|
# format.
|
2013-10-31 22:01:07 +00:00
|
|
|
environment.etc."os-release".text =
|
|
|
|
''
|
|
|
|
NAME=NixOS
|
|
|
|
ID=nixos
|
|
|
|
VERSION="${config.system.nixosVersion} (${config.system.nixosCodeName})"
|
|
|
|
VERSION_ID="${config.system.nixosVersion}"
|
|
|
|
PRETTY_NAME="NixOS ${config.system.nixosVersion} (${config.system.nixosCodeName})"
|
|
|
|
HOME_URL="http://nixos.org/"
|
|
|
|
'';
|
2013-01-16 13:40:41 +00:00
|
|
|
|
2012-04-10 20:56:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|