Add games packages from nixos config
This commit is contained in:
parent
6c147ede0c
commit
4bef95a5d2
|
@ -1,5 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [./default.nix];
|
||||
imports = [
|
||||
./default.nix
|
||||
../programs/games/default.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
blender
|
||||
freecad
|
||||
|
|
15
programs/games/default.nix
Normal file
15
programs/games/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
wineWowPackages.waylandFull
|
||||
lutris
|
||||
prismlauncher
|
||||
(retroarch.override {
|
||||
cores = with libretro; [dolphin mgba mupen64plus];
|
||||
})
|
||||
];
|
||||
}
|
Reference in a new issue