diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2025-11-25 07:16:48 -0500 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-11-25 07:16:48 -0500 |
| commit | 34a81b72d264acc99972e4a8e77be33e713486c8 (patch) | |
| tree | 6fbf74f3558886d0d04feaf235580fa76ae26e8e /modules/desktop/apps/games/freeciv.nix | |
| parent | 29e4d76f2169644939495e40ced0404667c50f17 (diff) | |
| download | nix-config-34a81b72d264acc99972e4a8e77be33e713486c8.tar.gz nix-config-34a81b72d264acc99972e4a8e77be33e713486c8.tar.bz2 nix-config-34a81b72d264acc99972e4a8e77be33e713486c8.zip | |
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) {}) - ]; - }; -} |
