start move steam to seperate module

This commit is contained in:
Noa Aarts 2024-05-11 10:25:05 +02:00
parent 11b9c3de44
commit 6f4ec604ab
4 changed files with 88 additions and 65 deletions

View file

@ -0,0 +1,11 @@
{ lib, config, pkgs, ... }:
let
cfg = config.modules.games.minecraft;
in
{
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.prismlauncher
];
};
}