mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Fixed some game packages
This commit is contained in:
parent
e24c4435fd
commit
656608c84a
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, pkgs-stable, ... }:
|
||||||
let
|
let
|
||||||
myRetroarch =
|
myRetroarch =
|
||||||
(pkgs.retroarch.override {
|
(pkgs.retroarch.override {
|
||||||
|
@ -22,7 +22,7 @@ let
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = (with pkgs; [
|
||||||
# Games
|
# Games
|
||||||
pegasus-frontend
|
pegasus-frontend
|
||||||
myRetroarch
|
myRetroarch
|
||||||
|
@ -31,8 +31,10 @@ in
|
||||||
qjoypad
|
qjoypad
|
||||||
superTux
|
superTux
|
||||||
superTuxKart
|
superTuxKart
|
||||||
#pokefinder
|
gamepad-tool
|
||||||
];
|
]) ++ (with pkgs-stable; [
|
||||||
|
pokefinder
|
||||||
|
]);
|
||||||
|
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
|
Loading…
Reference in a new issue