2016-08-01 00:00:00 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2017-04-01 00:00:00 +00:00
|
|
|
cfg = config.system.nixos;
|
2016-08-01 00:00:00 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options.system = {
|
|
|
|
|
2017-04-01 00:00:00 +00:00
|
|
|
nixos.label = mkOption {
|
2016-08-01 00:00:00 +00:00
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
NixOS version name to be used in the names of generated
|
|
|
|
outputs and boot labels.
|
|
|
|
|
|
|
|
If you ever wanted to influence the labels in your GRUB menu,
|
|
|
|
this is the option for you.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-04-01 00:00:00 +00:00
|
|
|
nixos.tags = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "with-xen" ];
|
|
|
|
description = ''
|
|
|
|
Strings to prefix to the default
|
|
|
|
<option>system.nixos.label</option>.
|
|
|
|
|
|
|
|
Useful for not loosing track of configurations built with
|
|
|
|
different options, e.g.:
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
{
|
|
|
|
system.nixos.tags = [ "with-xen" ];
|
|
|
|
virtualisation.xen.enable = true;
|
|
|
|
}
|
|
|
|
</screen>
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-08-01 00:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
# This is set here rather than up there so that changing it would
|
|
|
|
# not rebuild the manual
|
2017-04-01 00:00:00 +00:00
|
|
|
system.nixos.label = mkDefault (concatStringsSep "-" (sort (x: y: x < y) cfg.tags) + "-" + cfg.version);
|
2016-08-01 00:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|