I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
448 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, options, lib, pkgs, ... }:
  3. with lib;
  4. with lib.types;
  5. let
  6. cfg = config.modules.godot;
  7. in {
  8. options.modules.godot = {
  9. enable = mkOption {
  10. type = bool;
  11. default = false;
  12. };
  13. };
  14. config = mkIf cfg.enable {
  15. environment.systemPackages = [
  16. pkgs.tiled
  17. pkgs.godot
  18. pkgs.godot-server
  19. pkgs.godot-headless
  20. pkgs.gdtoolkit
  21. ];
  22. };
  23. }