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