gaming, mail, fixes, and stuff!
This commit is contained in:
parent
30868c04bd
commit
bdf72eb68d
18 changed files with 272 additions and 32 deletions
20
modules/gaming/minecraft.nix
Normal file
20
modules/gaming/minecraft.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
gaming = {
|
||||
minecraft.enable = lib.mkEnableOption "enable minecraft";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.gaming.minecraft.enable {
|
||||
home.packages = with pkgs; [
|
||||
prismlauncher
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue