16 lines
205 B
Nix
Executable file
16 lines
205 B
Nix
Executable file
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./steam.nix
|
|
./mangohud.nix
|
|
./rpcs3.nix
|
|
./retroarch.nix
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
heroic
|
|
prismlauncher-qt5
|
|
];
|
|
}
|