diff options
Diffstat (limited to 'modules/desktop/apps/games/unciv.nix')
| -rw-r--r-- | modules/desktop/apps/games/unciv.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/desktop/apps/games/unciv.nix b/modules/desktop/apps/games/unciv.nix deleted file mode 100644 index 1eec540..0000000 --- a/modules/desktop/apps/games/unciv.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ - config, - options, - lib, - pkgs, - rootPath, - ... -}: let - uncivConf = config.modules.desktop.apps.games.unciv; - configDir = config.nixosConfig.configDir; -in { - options.modules.desktop.apps.games.unciv = { - enable = lib.mkOption { - type = lib.types.bool; - default = false; - }; - }; - - config = lib.mkIf (uncivConf.enable) { - home.packages = with pkgs; [ - (callPackage (rootPath + /packages/unciv/default.nix) {}) - ]; - }; -} |
