2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2007-04-04 17:10:38 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2009-09-25 19:55:08 +00:00
|
|
|
|
2007-04-04 17:10:38 +00:00
|
|
|
let
|
2009-05-28 16:03:48 +00:00
|
|
|
|
2015-09-03 03:27:56 +00:00
|
|
|
makeColor = n: value: "COLOR_${toString n}=${value}";
|
2016-01-17 16:54:33 +00:00
|
|
|
colors = concatImapStringsSep "\n" makeColor config.i18n.consoleColors;
|
2015-09-03 03:27:56 +00:00
|
|
|
|
2016-01-17 16:54:33 +00:00
|
|
|
vconsoleConf = pkgs.writeText "vconsole.conf" ''
|
|
|
|
KEYMAP=${config.i18n.consoleKeyMap}
|
|
|
|
FONT=${config.i18n.consoleFont}
|
|
|
|
${colors}
|
|
|
|
'';
|
2016-02-09 00:00:53 +00:00
|
|
|
|
2016-07-03 00:29:21 +00:00
|
|
|
kbdEnv = pkgs.buildEnv {
|
|
|
|
name = "kbd-env";
|
|
|
|
paths = [ pkgs.kbd ] ++ config.i18n.consolePackages;
|
|
|
|
pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ];
|
|
|
|
};
|
|
|
|
|
2016-02-09 00:00:53 +00:00
|
|
|
setVconsole = !config.boot.isContainer;
|
2009-07-15 11:19:11 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
2009-05-28 16:03:48 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2009-07-15 11:19:11 +00:00
|
|
|
# most options are defined in i18n.nix
|
|
|
|
|
2012-07-24 17:53:17 +00:00
|
|
|
# FIXME: still needed?
|
2009-09-25 19:55:08 +00:00
|
|
|
boot.extraTTYs = mkOption {
|
2009-05-28 16:03:48 +00:00
|
|
|
default = [];
|
2015-06-15 16:18:46 +00:00
|
|
|
type = types.listOf types.str;
|
2009-09-25 19:55:08 +00:00
|
|
|
example = ["tty8" "tty9"];
|
|
|
|
description = ''
|
2009-05-28 16:03:48 +00:00
|
|
|
Tty (virtual console) devices, in addition to the consoles on
|
|
|
|
which mingetty and syslogd run, that must be initialised.
|
|
|
|
Only useful if you have some program that you want to run on
|
|
|
|
some fixed console. For example, the NixOS installation CD
|
|
|
|
opens the manual in a web browser on console 7, so it sets
|
2009-09-25 19:55:08 +00:00
|
|
|
<option>boot.extraTTYs</option> to <literal>["tty7"]</literal>.
|
|
|
|
'';
|
2009-05-28 16:03:48 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-07-15 11:19:11 +00:00
|
|
|
};
|
2007-04-04 17:10:38 +00:00
|
|
|
|
|
|
|
|
2009-07-15 11:19:11 +00:00
|
|
|
###### implementation
|
2007-04-04 17:10:38 +00:00
|
|
|
|
2016-02-09 00:00:53 +00:00
|
|
|
config = mkMerge [
|
|
|
|
(mkIf (!setVconsole) {
|
|
|
|
systemd.services."systemd-vconsole-setup".enable = false;
|
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf setVconsole {
|
|
|
|
environment.systemPackages = [ pkgs.kbd ];
|
|
|
|
|
|
|
|
# Let systemd-vconsole-setup.service do the work of setting up the
|
2016-07-03 00:28:29 +00:00
|
|
|
# virtual consoles.
|
2016-07-03 00:29:21 +00:00
|
|
|
environment.etc."vconsole.conf".source = vconsoleConf;
|
|
|
|
# Provide kbd with additional packages.
|
|
|
|
environment.etc."kbd".source = "${kbdEnv}/share";
|
2016-02-09 00:00:53 +00:00
|
|
|
|
|
|
|
# This is identical to the systemd-vconsole-setup.service unit
|
|
|
|
# shipped with systemd, except that it uses /dev/tty1 instead of
|
|
|
|
# /dev/tty0 to prevent putting the X server in non-raw mode, and
|
|
|
|
# it has a restart trigger.
|
|
|
|
systemd.services."systemd-vconsole-setup" =
|
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
|
|
|
before = [ "display-manager.service" ];
|
|
|
|
after = [ "systemd-udev-settle.service" ];
|
2016-07-03 00:29:21 +00:00
|
|
|
restartTriggers = [ vconsoleConf kbdEnv ];
|
2016-02-09 00:00:53 +00:00
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
2007-04-04 17:10:38 +00:00
|
|
|
|
|
|
|
}
|