Implement quick and dirty es-de fix
This commit is contained in:
parent
3b6a8104bf
commit
c6cd3018db
|
@ -2,6 +2,7 @@
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
system,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -22,5 +23,24 @@ in
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
ESDE_APPDATA_DIR = "$HOME/.config/ES-DE";
|
ESDE_APPDATA_DIR = "$HOME/.config/ES-DE";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO: Remove exception once no longer required by es-de
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
"freeimage-unstable-2021-11-01"
|
||||||
|
];
|
||||||
|
|
||||||
|
# TODO: Remove once emulationstation-de fixes the issue
|
||||||
|
nixpkgs.overlays =
|
||||||
|
let
|
||||||
|
pkgs-stable = import (fetchTarball {
|
||||||
|
url = "https://github.com/NixOS/nixpkgs/archive/nixos-24.11.tar.gz";
|
||||||
|
sha256 = "0pbvwix9vjkdan1nxxzqfg2yap28afqf8m2nlw1xkqp5c832bkkz";
|
||||||
|
}) { inherit system; };
|
||||||
|
in
|
||||||
|
[
|
||||||
|
(final: prev: {
|
||||||
|
libgit2 = pkgs-stable.libgit2;
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
# Gaming
|
# Gaming
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
modrinth.enable = true;
|
modrinth.enable = true;
|
||||||
es-de.enable = false;
|
es-de.enable = true;
|
||||||
retroarch.enable = true;
|
retroarch.enable = true;
|
||||||
ryujinx.enable = true;
|
ryujinx.enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue