From 7b129546bb20e4738796f65131771533a07858c4 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 2 Sep 2024 12:35:07 +0300 Subject: [PATCH] modules/games: add freeciv game --- modules/home-manager/games.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/games.nix b/modules/home-manager/games.nix index 150c986..f6c38e7 100644 --- a/modules/home-manager/games.nix +++ b/modules/home-manager/games.nix @@ -8,10 +8,12 @@ in mindustry.enable = mkEnableOption "mindustry"; widelands.enable = mkEnableOption "widelands"; unciv.enable = mkEnableOption "unciv"; + freeciv.enable = mkEnableOption "freeciv"; }; config.home.packages = lib.optional cfg.mindustry.enable pkgs.unstable.mindustry ++ lib.optional cfg.widelands.enable pkgs.widelands - ++ lib.optional cfg.unciv.enable pkgs.unstable.unciv; + ++ lib.optional cfg.unciv.enable pkgs.unstable.unciv + ++ lib.optional cfg.freeciv.enable pkgs.unstable.freeciv; }