Add games packages from nixos config

This commit is contained in:
Evie Litherland-Smith 2024-05-21 22:12:02 +01:00
parent 6c147ede0c
commit 4bef95a5d2
2 changed files with 19 additions and 1 deletions

View file

@ -1,5 +1,8 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [./default.nix]; imports = [
./default.nix
../programs/games/default.nix
];
home.packages = with pkgs; [ home.packages = with pkgs; [
blender blender
freecad freecad

View file

@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}: {
home.packages = with pkgs; [
wineWowPackages.waylandFull
lutris
prismlauncher
(retroarch.override {
cores = with libretro; [dolphin mgba mupen64plus];
})
];
}