Compare commits

..

2 Commits

Author SHA1 Message Date
jay
ddc3b16341 Forgot to delciare the emulation nix file. 2025-06-29 13:56:10 -04:00
jay
4267a0d72c Setup emulation stuff. 2025-06-29 13:53:53 -04:00
2 changed files with 18 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
{
imports = [
inputs.nix-flatpak.nixosModules.nix-flatpak
./programs/emulation.nix
./programs/firefox.nix
./programs/gaming.nix
./programs/general.nix

View File

@@ -0,0 +1,17 @@
{ pkgs, inputs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = [
pkgs.ppsspp
#pkgs.ppsspp-sdl-wayland
pkgs.quickemu
#pkgs.retroarch-full
# Broken
#inputs.suyu.packages.${pkgs.system}.suyu
];
services.flatpak.packages = [
"io.github.ryubing.Ryujinx"
];
}