nixos-config/modules/user/godot/default.nix
2025-10-11 21:52:10 -05:00

18 lines
272 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.userSettings.godot;
in {
options = {
userSettings.godot = {
enable = lib.mkEnableOption "Enable godot";
};
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
godot_4
];
};
}