Compare commits
No commits in common. "1d34b35a72f450aea7d3b160be16b997bf204189" and "1f3dfd0dbfe867a21e6dc8d0e9c6f9d30ffd7014" have entirely different histories.
1d34b35a72
...
1f3dfd0dbf
@ -68,23 +68,12 @@
|
|||||||
pandoc # I wish I didn't have to use it
|
pandoc # I wish I didn't have to use it
|
||||||
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
|
||||||
(retroarch.override {
|
(retroarch.override {
|
||||||
cores = with libretro; [
|
cores = with libretro; [ snes9x mgba gambatte ];
|
||||||
snes9x
|
|
||||||
mgba
|
|
||||||
gambatte
|
|
||||||
flycast
|
|
||||||
genesis-plus-gx
|
|
||||||
mupen64plus
|
|
||||||
melonds
|
|
||||||
fceumm
|
|
||||||
];
|
|
||||||
}) # Retroarch with cores
|
}) # Retroarch with cores
|
||||||
dolphin-emu # Gamecube/wii emulator
|
|
||||||
duckstation # Playstation 1 emulator
|
duckstation # Playstation 1 emulator
|
||||||
pcsx2 # Playstation 2 emulator
|
pcsx2 # Playstation 2 emulator
|
||||||
ppsspp-sdl-wayland # Playstation portable emulator
|
ppsspp-sdl-wayland # Playstation portable emulator
|
||||||
(callPackage ./modules/scripts.nix { inherit pkgs; }) # My scripts
|
(callPackage ./modules/scripts.nix { inherit pkgs; }) # My scripts
|
||||||
# (callPackage ./modules/comet-gog.nix { inherit pkgs; }) # Comet for gog achievements
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Environmental variables I can't live without
|
# Environmental variables I can't live without
|
||||||
|
@ -1,16 +1,13 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
with pkgs;
|
with pkgs;
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustProgram rec {
|
||||||
pname = "comet-gog";
|
pname = "comet-gog";
|
||||||
version = "e313c8a";
|
version = "e313c8a";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "imLinguin";
|
owner = "imLinguin";
|
||||||
repo = "comet";
|
repo = "comet";
|
||||||
rev = "e313c8ae052dfd9a6b06c8246f83f5f34672bcaa";
|
rev = "e313c8ae052dfd9a6b06c8246f83f5f34672bcaa";
|
||||||
hash = "sha256-ctU9yhnlS8x4xY2iUaG7NvPJB4+vJTXzZF2llof4NyM=";
|
hash = "sha256-p4fDm2XdqAOBZTNuw8S29vj5U21t4eeHjtKiK6tN0AM=";
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
};
|
||||||
cargoLock.lockFile = src + /Cargo.lock;
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
buildInputs = [ protobuf ];
|
|
||||||
PROTOC = "${protobuf}/bin/protoc";
|
|
||||||
}
|
}
|
||||||
|
@ -20,15 +20,16 @@ remove_file() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ $# -eq 1 ]; then
|
if [ $# -ne 2 ]; then
|
||||||
open_file "$1"
|
|
||||||
exit 0
|
|
||||||
elif [ $# -ne 2 ]; then
|
|
||||||
echo "You need to provide action and file name."
|
echo "You need to provide action and file name."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
edit)
|
||||||
|
open_file "$2"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
rm)
|
rm)
|
||||||
remove_file "$2"
|
remove_file "$2"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -148,17 +148,7 @@
|
|||||||
ipafont
|
ipafont
|
||||||
ryzenadj
|
ryzenadj
|
||||||
wineWowPackages.staging
|
wineWowPackages.staging
|
||||||
(lutris.override {
|
lutris
|
||||||
extraPkgs = pkgs:
|
|
||||||
[
|
|
||||||
libnotify # For when something fails
|
|
||||||
];
|
|
||||||
extraLibraries = pkgs: [
|
|
||||||
# Dead cells dependency's
|
|
||||||
xorg.libXScrnSaver
|
|
||||||
hashlink
|
|
||||||
];
|
|
||||||
})
|
|
||||||
cryptsetup
|
cryptsetup
|
||||||
xfsprogs
|
xfsprogs
|
||||||
(catppuccin-kde.override { winDecStyles = [ "classic" "modern" ]; })
|
(catppuccin-kde.override { winDecStyles = [ "classic" "modern" ]; })
|
||||||
|
Loading…
Reference in New Issue
Block a user