Compare commits

..

No commits in common. "5946c27d5b9f6f425d89ec15b0c3647ddd09565c" and "f22fddbd3e79bb21b63ad9afb557b4fb2d981811" have entirely different histories.

3 changed files with 8 additions and 2 deletions

View file

@ -10,6 +10,7 @@
./moonlight.nix
./steam.nix
./tetrio.nix
./yuzu.nix
];

View file

@ -3,9 +3,8 @@ lib.mkIf config.desktop.emulation.enable {
environment.systemPackages = with pkgs; [
melonDS
dolphin-emu
lime3ds
#lime3ds
cemu
yuzu
steam-rom-manager
];
}

View file

@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.enable {
environment.systemPackages = with pkgs; [
yuzu
];
}