mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
d3e46e5413
Signed-off-by: Magic_RB <magic_rb@redalder.org>
18 lines
348 B
Nix
18 lines
348 B
Nix
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.magic_rb.programs.multimc;
|
|
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
|
in
|
|
{
|
|
options.magic_rb.programs.multimc = {
|
|
enable = mkEnableOption "Enable MultiMC Minecraft launcher.";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [
|
|
nixpkgs-unstable.multimc
|
|
];
|
|
};
|
|
}
|