Compare commits

...

2 Commits

3 changed files with 2 additions and 63 deletions

View File

@@ -13,7 +13,7 @@ in
nixpkgs.config.allowUnfree = true;
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nixUnstable;
# nix.package = pkgs.nixUnstable;
nix.settings.auto-optimise-store = false;
users.users.universelaptop = {

View File

@@ -1,51 +1,4 @@
{ lib, config, pkgs, ... }: let
wiiUDownloader = pkgs.stdenv.mkDerivation rec {
pname = "WiiUDownloader";
version = "1.32";
src = pkgs.fetchFromGitHub {
owner = "Xpl0itU";
repo = "WiiUDownloader";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-R3FiNiK27Q2x5HbHmWw3F4LPJNKz5BAoOyl4fYAEQlc=";
};
preConfigure = ''
cp ${./gtitles.c} src/gtitles.c
'';
nativeBuildInputs = with pkgs; [
cmake
pkg-config
wrapGAppsHook
];
buildInputs = with pkgs; [
curl
mbedtls
gtkmm3
pcre2
pcre-cpp
util-linux
libselinux
libsepol
libthai
libdatrie
xorg.libXdmcp
libxkbcommon
libepoxy
xorg.libXtst
];
propagatedBuildInputs = with pkgs; [
gsettings-desktop-schemas
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv * $out/bin
runHook postInstall
'';
};
in {
{ lib, config, pkgs, ... }: {
# For steam
services.flatpak.enable = true;
# Game compat
@@ -61,11 +14,5 @@ in {
# PS2 Games
pcsx2
# Switch / WiiU Games
cemu
wiiUDownloader
yuzu-early-access
ukmm
];
}

File diff suppressed because one or more lines are too long