2021-12-19 01:06:50 +00:00
|
|
|
|
{ config, lib, options, pkgs, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
cfg = config.system.nixos;
|
2021-12-19 01:06:50 +00:00
|
|
|
|
opt = options.system.nixos;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
|
inherit (lib)
|
|
|
|
|
concatStringsSep mapAttrsToList toLower
|
|
|
|
|
literalExpression mkRenamedOptionModule mkDefault mkOption trivial types;
|
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
|
needsEscaping = s: null != builtins.match "[a-zA-Z0-9]+" s;
|
|
|
|
|
escapeIfNeccessary = s: if needsEscaping s then s else ''"${lib.escape [ "\$" "\"" "\\" "\`" ] s}"'';
|
2022-03-05 16:20:37 +00:00
|
|
|
|
attrsToText = attrs:
|
2022-03-30 09:31:56 +00:00
|
|
|
|
concatStringsSep "\n" (
|
|
|
|
|
mapAttrsToList (n: v: ''${n}=${escapeIfNeccessary (toString v)}'') attrs
|
2022-06-16 17:23:12 +00:00
|
|
|
|
) + "\n";
|
2022-03-05 16:20:37 +00:00
|
|
|
|
|
2022-04-03 18:54:34 +00:00
|
|
|
|
osReleaseContents = {
|
|
|
|
|
NAME = "NixOS";
|
|
|
|
|
ID = "nixos";
|
|
|
|
|
VERSION = "${cfg.release} (${cfg.codeName})";
|
|
|
|
|
VERSION_CODENAME = toLower cfg.codeName;
|
|
|
|
|
VERSION_ID = cfg.release;
|
|
|
|
|
BUILD_ID = cfg.version;
|
|
|
|
|
PRETTY_NAME = "NixOS ${cfg.release} (${cfg.codeName})";
|
|
|
|
|
LOGO = "nix-snowflake";
|
|
|
|
|
HOME_URL = "https://nixos.org/";
|
|
|
|
|
DOCUMENTATION_URL = "https://nixos.org/learn.html";
|
|
|
|
|
SUPPORT_URL = "https://nixos.org/community.html";
|
|
|
|
|
BUG_REPORT_URL = "https://github.com/NixOS/nixpkgs/issues";
|
2023-01-11 07:51:40 +00:00
|
|
|
|
} // lib.optionalAttrs (cfg.variant_id != null) {
|
|
|
|
|
VARIANT_ID = cfg.variant_id;
|
2022-04-03 18:54:34 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
initrdReleaseContents = osReleaseContents // {
|
|
|
|
|
PRETTY_NAME = "${osReleaseContents.PRETTY_NAME} (Initrd)";
|
|
|
|
|
};
|
|
|
|
|
initrdRelease = pkgs.writeText "initrd-release" (attrsToText initrdReleaseContents);
|
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
|
in
|
2020-04-24 23:36:52 +00:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
2022-08-12 12:06:08 +00:00
|
|
|
|
./label.nix
|
2020-04-24 23:36:52 +00:00
|
|
|
|
(mkRenamedOptionModule [ "system" "nixosVersion" ] [ "system" "nixos" "version" ])
|
|
|
|
|
(mkRenamedOptionModule [ "system" "nixosVersionSuffix" ] [ "system" "nixos" "versionSuffix" ])
|
|
|
|
|
(mkRenamedOptionModule [ "system" "nixosRevision" ] [ "system" "nixos" "revision" ])
|
|
|
|
|
(mkRenamedOptionModule [ "system" "nixosLabel" ] [ "system" "nixos" "label" ])
|
|
|
|
|
];
|
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
|
options.boot.initrd.osRelease = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
readOnly = true;
|
|
|
|
|
default = initrdRelease;
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
options.system = {
|
|
|
|
|
|
|
|
|
|
nixos.version = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.str;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The full NixOS version (e.g. `16.03.1160.f2d4ee1`).";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixos.release = mkOption {
|
|
|
|
|
readOnly = true;
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = trivial.release;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The NixOS release (e.g. `16.03`).";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixos.versionSuffix = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = trivial.versionSuffix;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The NixOS version suffix (e.g. `1160.f2d4ee1`).";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixos.revision = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = trivial.revisionWithDefault null;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The Git revision from which this NixOS configuration was built.";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixos.codeName = mkOption {
|
|
|
|
|
readOnly = true;
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = trivial.codeName;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The NixOS release code name (e.g. `Emu`).";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
|
nixos.variant_id = mkOption {
|
|
|
|
|
type = types.nullOr (types.strMatching "^[a-z0-9._-]+$");
|
|
|
|
|
default = null;
|
|
|
|
|
description = lib.mdDoc "A lower-case string identifying a specific variant or edition of the operating system";
|
|
|
|
|
example = "installer";
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
stateVersion = mkOption {
|
|
|
|
|
type = types.str;
|
2022-12-28 21:21:41 +00:00
|
|
|
|
# TODO Remove this and drop the default of the option so people are forced to set it.
|
|
|
|
|
# Doing this also means fixing the comment in nixos/modules/testing/test-instrumentation.nix
|
|
|
|
|
apply = v:
|
|
|
|
|
lib.warnIf (options.system.stateVersion.highestPrio == (lib.mkOptionDefault { }).priority)
|
|
|
|
|
"system.stateVersion is not set, defaulting to ${v}. Read why this matters on https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion."
|
|
|
|
|
v;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
default = cfg.release;
|
2021-12-19 01:06:50 +00:00
|
|
|
|
defaultText = literalExpression "config.${opt.release}";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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 should set the
|
|
|
|
|
value of this option to the NixOS release with which you want
|
|
|
|
|
to be compatible. The effect is that NixOS will use
|
|
|
|
|
defaults corresponding to the specified release (such as using
|
|
|
|
|
an older version of PostgreSQL).
|
|
|
|
|
It‘s perfectly fine and recommended to leave this value at the
|
|
|
|
|
release version of the first install of this system.
|
|
|
|
|
Changing this option will not upgrade your system. In fact it
|
|
|
|
|
is meant to stay constant exactly when you upgrade your system.
|
|
|
|
|
You should only bump this option, if you are sure that you can
|
|
|
|
|
or have migrated all state on your system which is affected
|
|
|
|
|
by this option.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
defaultChannel = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "https://nixos.org/channels/nixos-unstable";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "Default NixOS channel to which the root user is subscribed.";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
configurationRevision = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
description = lib.mdDoc "The Git revision of the top-level flake from which this configuration was built.";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
|
|
|
|
system.nixos = {
|
|
|
|
|
# These defaults are set here rather than up there so that
|
|
|
|
|
# changing them would not rebuild the manual
|
|
|
|
|
version = mkDefault (cfg.release + cfg.versionSuffix);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Generate /etc/os-release. See
|
|
|
|
|
# https://www.freedesktop.org/software/systemd/man/os-release.html for the
|
|
|
|
|
# format.
|
2022-03-05 16:20:37 +00:00
|
|
|
|
environment.etc = {
|
|
|
|
|
"lsb-release".text = attrsToText {
|
|
|
|
|
LSB_VERSION = "${cfg.release} (${cfg.codeName})";
|
|
|
|
|
DISTRIB_ID = "nixos";
|
|
|
|
|
DISTRIB_RELEASE = cfg.release;
|
|
|
|
|
DISTRIB_CODENAME = toLower cfg.codeName;
|
|
|
|
|
DISTRIB_DESCRIPTION = "NixOS ${cfg.release} (${cfg.codeName})";
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-03 18:54:34 +00:00
|
|
|
|
"os-release".text = attrsToText osReleaseContents;
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-07 04:07:37 +00:00
|
|
|
|
# uses version info nixpkgs, which requires a full nixpkgs path
|
|
|
|
|
meta.buildDocsInSandbox = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}
|