From cfce2cf63882db3a1434171f937712a3f004cf61 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Thu, 15 Aug 2024 17:41:36 +0200 Subject: [PATCH] backwards: Add `games` module --- hosts/backwards/modules/games/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hosts/backwards/modules/games/default.nix diff --git a/hosts/backwards/modules/games/default.nix b/hosts/backwards/modules/games/default.nix new file mode 100644 index 0000000..9fba2e1 --- /dev/null +++ b/hosts/backwards/modules/games/default.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + home-manager.users.alex = { + home.packages = [ + (pkgs.retroarch.override { + cores = [ + pkgs.libretro.snes9x + pkgs.libretro.genesis-plus-gx + ]; + }) + ]; + }; +}