nix/modules/nixos/melee.nix

30 lines
398 B
Nix
Raw Normal View History

2023-10-03 17:09:12 -05:00
{
# flake,
inputs,
# outputs,
# lib,
# config,
# pkgs,
system,
# modulesPath,
...
}: {
imports = [inputs.ssbm.nixosModule];
environment = {
systemPackages = with inputs.ssbm.packages.${system}; [
slippi-netplay
slippi-playback
];
};
ssbm = {
cache.enable = true;
gcc = {
rules.enable = true;
oc-kmod.enable = true;
};
};
}