Add a snes emulator.

This commit is contained in:
Tom Alexander
2024-12-29 15:12:31 -05:00
parent ce8718b042
commit 81315e4c7b
4 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
bsnes-hd
];
}

View File

@@ -2,6 +2,7 @@
config,
lib,
pkgs,
pkgs-unstable,
...
}:
@@ -88,4 +89,11 @@
pcsctools
];
nixpkgs.overlays = [
(final: prev: {
gnupg = pkgs-unstable.gnupg;
scdaemon = pkgs-unstable.scdaemon;
})
];
}