nixos-config/modules/games/tetris/default.nix
Charlotte Van Petegem 224de7ccbc
Add tetris flake
2022-01-11 20:56:03 +01:00

18 lines
375 B
Nix

{ config, lib, pkgs, ... }:
{
options.chvp.games.tetris.server = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.games.tetris.server {
chvp.services.nginx.hosts = [{
fqdn = "tetris.vanpetegem.me";
options = {
root = "${pkgs.tetris}";
locations."/".index = "index.html";
};
}];
};
}