2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2007-04-04 19:10:38 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-09-25 21:55:08 +02:00
|
|
|
|
2007-04-04 19:10:38 +02:00
|
|
|
let
|
2009-05-28 18:03:48 +02:00
|
|
|
|
2012-10-18 17:54:07 +02:00
|
|
|
vconsoleConf = pkgs.writeText "vconsole.conf"
|
|
|
|
''
|
2013-09-26 17:33:52 +02:00
|
|
|
KEYMAP=${config.i18n.consoleKeyMap}
|
|
|
|
FONT=${config.i18n.consoleFont}
|
2012-10-18 17:54:07 +02:00
|
|
|
'';
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
2009-05-28 18:03:48 +02:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
# most options are defined in i18n.nix
|
|
|
|
|
2012-07-24 19:53:17 +02:00
|
|
|
# FIXME: still needed?
|
2009-09-25 21:55:08 +02:00
|
|
|
boot.extraTTYs = mkOption {
|
2009-05-28 18:03:48 +02:00
|
|
|
default = [];
|
2009-09-25 21:55:08 +02:00
|
|
|
example = ["tty8" "tty9"];
|
|
|
|
description = ''
|
2009-05-28 18:03:48 +02: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 21:55:08 +02:00
|
|
|
<option>boot.extraTTYs</option> to <literal>["tty7"]</literal>.
|
|
|
|
'';
|
2009-05-28 18:03:48 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
};
|
2007-04-04 19:10:38 +02:00
|
|
|
|
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
###### implementation
|
2007-04-04 19:10:38 +02:00
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
config = {
|
|
|
|
|
2012-06-16 06:19:43 +02:00
|
|
|
environment.systemPackages = [ pkgs.kbd ];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2012-07-24 19:53:17 +02:00
|
|
|
# Let systemd-vconsole-setup.service do the work of setting up the
|
|
|
|
# virtual consoles. FIXME: trigger a restart of
|
|
|
|
# systemd-vconsole-setup.service if /etc/vconsole.conf changes.
|
2013-02-03 13:24:22 +01:00
|
|
|
environment.etc."vconsole.conf".source = vconsoleConf;
|
2012-10-18 17:54:07 +02: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.
|
2013-01-16 12:33:18 +01:00
|
|
|
systemd.services."systemd-vconsole-setup" =
|
2014-04-17 18:52:31 +02:00
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
2012-10-18 17:54:07 +02:00
|
|
|
restartTriggers = [ vconsoleConf ];
|
2009-09-25 21:55:08 +02:00
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
2009-03-06 13:25:38 +01:00
|
|
|
};
|
2007-04-04 19:10:38 +02:00
|
|
|
|
|
|
|
}
|