2009-09-25 12:55:08 -07:00
|
|
|
# Execute the game `rogue' on tty 9. Mostly used by the NixOS
|
|
|
|
# installation CD.
|
2009-01-08 15:49:22 -08:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-01-08 15:49:22 -08:00
|
|
|
|
|
|
|
let
|
2009-06-10 05:53:45 -07:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
cfg = config.services.rogue;
|
|
|
|
|
|
|
|
in
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
2009-01-08 15:49:22 -08:00
|
|
|
options = {
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-06-10 05:53:45 -07:00
|
|
|
services.rogue.enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable the Rogue game on one of the virtual
|
|
|
|
consoles.
|
|
|
|
'';
|
2009-01-08 15:49:22 -08:00
|
|
|
};
|
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
services.rogue.tty = mkOption {
|
|
|
|
default = "tty9";
|
2009-06-10 05:53:45 -07:00
|
|
|
description = ''
|
|
|
|
Virtual console on which to run Rogue.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2009-01-08 15:49:22 -08:00
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
###### implementation
|
2009-01-08 15:49:22 -08:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
config = mkIf cfg.enable {
|
2009-01-08 15:49:22 -08:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
boot.extraTTYs = [ cfg.tty ];
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-10-12 11:09:34 -07:00
|
|
|
jobs.rogue =
|
2009-10-12 10:27:57 -07:00
|
|
|
{ description = "Rogue dungeon crawling game";
|
2009-06-10 05:34:58 -07:00
|
|
|
|
2009-11-06 14:19:17 -08:00
|
|
|
startOn = "started udev";
|
2009-06-10 05:53:45 -07:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
extraConfig = "chdir /root";
|
2009-06-08 15:44:59 -07:00
|
|
|
|
2009-10-15 07:02:24 -07:00
|
|
|
exec = "${pkgs.rogue}/bin/rogue < /dev/${cfg.tty} > /dev/${cfg.tty} 2>&1";
|
2009-09-25 12:55:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
services.ttyBackgrounds.specificThemes = singleton
|
|
|
|
{ tty = cfg.tty;
|
|
|
|
theme = pkgs.themes "theme-gnu";
|
|
|
|
};
|
2009-06-08 15:44:59 -07:00
|
|
|
|
2009-09-25 12:55:08 -07:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-01-08 15:49:22 -08:00
|
|
|
}
|