mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
22 lines
334 B
Nix
22 lines
334 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Games
|
|
#TODO need flatpak steam
|
|
gamehub
|
|
(retroarch.override {
|
|
cores = with libretro; [
|
|
mgba
|
|
desmume
|
|
dolphin
|
|
citra
|
|
genesis-plus-gx
|
|
];
|
|
})
|
|
airshipper
|
|
qjoypad
|
|
# TODO need flatpak minecraft
|
|
];
|
|
}
|