14 lines
277 B
Nix
Executable file
14 lines
277 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./steam.nix
|
|
./mangohud.nix
|
|
./rpcs3.nix
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
# Heroic is using an electron version that's considered unsafe, so until that changes I'm not installing it
|
|
#heroic
|
|
prismlauncher-qt5
|
|
];
|
|
}
|