nixos/modules/home/apps/minecraft.nix

16 lines
288 B
Nix
Raw Permalink Normal View History

2025-02-01 17:55:08 +01:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.home.apps.minecraft;
in
{
options.modules.home.apps.minecraft = {
enable = mkEnableOption ''
Enable minecraft
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [gdlauncher-carbon];
};
}