Files
nixos-template-base/activation-manuelle/app-jeux.nix

14 lines
208 B
Nix
Raw Normal View History

2016-07-10 22:06:26 +02:00
{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf;
cfg = config.r6d.config-generator;
in {
imports = [
];
2016-07-10 22:06:26 +02:00
environment.systemPackages = with pkgs; mkIf cfg.jeux [
# Jeux
urbanterror
];
}