nix/modules/games/emulator/default.nix

13 lines
151 B
Nix
Raw Normal View History

2024-10-13 13:54:32 +02:00
{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.games.enable {
environment.systemPackages = with pkgs; [
cemu
];
};
2024-10-11 01:29:53 +02:00
}