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