2018-02-22 21:31:57 +00:00
|
|
|
{ options, 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
|
2017-04-01 00:00:00 +00:00
|
|
|
cfg = config.system.nixos;
|
2015-09-18 13:46:47 +00:00
|
|
|
|
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
|
|
|
{
|
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
options.system = {
|
2013-01-16 13:40:41 +00:00
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
nixos.version = 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
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
nixos.release = mkOption {
|
2015-07-30 11:36:57 +00:00
|
|
|
readOnly = true;
|
2015-07-27 17:46:36 +00:00
|
|
|
type = types.str;
|
2018-04-26 08:31:05 +00:00
|
|
|
default = trivial.release;
|
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
|
|
|
};
|
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
nixos.versionSuffix = mkOption {
|
2013-10-23 14:59:33 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2018-04-26 08:31:05 +00:00
|
|
|
default = trivial.versionSuffix;
|
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
|
|
|
};
|
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
nixos.revision = mkOption {
|
2013-10-24 17:58:34 +00:00
|
|
|
internal = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2018-10-05 14:48:42 +00:00
|
|
|
default = lib.trivial.revisionWithDefault "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
|
|
|
};
|
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
nixos.codeName = mkOption {
|
2015-07-30 11:36:57 +00:00
|
|
|
readOnly = true;
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2018-11-15 20:51:29 +00:00
|
|
|
default = lib.trivial.codeName;
|
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
|
|
|
};
|
|
|
|
|
2017-04-01 00:00:00 +00:00
|
|
|
stateVersion = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.release;
|
|
|
|
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 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 = {
|
|
|
|
|
2017-04-01 00:00:00 +00:00
|
|
|
system.nixos = {
|
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
|
2017-04-01 00:00:00 +00:00
|
|
|
version = mkDefault (cfg.release + cfg.versionSuffix);
|
|
|
|
revision = mkIf (pathIsDirectory gitRepo) (mkDefault gitCommitId);
|
|
|
|
versionSuffix = mkIf (pathIsDirectory gitRepo) (mkDefault (".git." + gitCommitId));
|
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
|
2017-01-07 16:28:11 +00:00
|
|
|
# https://www.freedesktop.org/software/systemd/man/os-release.html for the
|
2012-05-17 21:10:42 +00:00
|
|
|
# format.
|
2013-10-31 22:01:07 +00:00
|
|
|
environment.etc."os-release".text =
|
|
|
|
''
|
|
|
|
NAME=NixOS
|
|
|
|
ID=nixos
|
2017-04-01 00:00:00 +00:00
|
|
|
VERSION="${cfg.version} (${cfg.codeName})"
|
|
|
|
VERSION_CODENAME=${toLower cfg.codeName}
|
|
|
|
VERSION_ID="${cfg.version}"
|
|
|
|
PRETTY_NAME="NixOS ${cfg.version} (${cfg.codeName})"
|
2019-01-05 05:03:39 +00:00
|
|
|
LOGO="nix-snowflake"
|
2017-02-25 21:15:45 +00:00
|
|
|
HOME_URL="https://nixos.org/"
|
|
|
|
SUPPORT_URL="https://nixos.org/nixos/support.html"
|
|
|
|
BUG_REPORT_URL="https://github.com/NixOS/nixpkgs/issues"
|
2013-10-31 22:01:07 +00:00
|
|
|
'';
|
2013-01-16 13:40:41 +00:00
|
|
|
|
2012-04-10 20:56:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|