mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-21 03:46:06 -07:00
Compare commits
No commits in common. "b773c64e3b5e8a5bb19e58224fa43dd6c16ba4bc" and "1c0e56b2b6d7438c786b236ef04067ef9af255c3" have entirely different histories.
b773c64e3b
...
1c0e56b2b6
@ -11,7 +11,6 @@ apps=(
|
|||||||
"/run/current-system/sw/bin/ppsspp PPSSPP Emulator"
|
"/run/current-system/sw/bin/ppsspp PPSSPP Emulator"
|
||||||
"/run/current-system/sw/bin/ares Ares Emulator"
|
"/run/current-system/sw/bin/ares Ares Emulator"
|
||||||
"/run/current-system/sw/bin/citra-qt Citra Emulator"
|
"/run/current-system/sw/bin/citra-qt Citra Emulator"
|
||||||
"/run/current-system/sw/bin/retroarch Retroarch Emulator"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
for app in "${apps[@]}"
|
for app in "${apps[@]}"
|
||||||
|
@ -16,9 +16,6 @@ shopt -s histappend;
|
|||||||
# Autocorrect typos in path names when using `cd`
|
# Autocorrect typos in path names when using `cd`
|
||||||
shopt -s cdspell;
|
shopt -s cdspell;
|
||||||
|
|
||||||
# Setup thefuck
|
|
||||||
eval "$(thefuck --alias)"
|
|
||||||
|
|
||||||
# Enable some Bash 4 features when possible:
|
# Enable some Bash 4 features when possible:
|
||||||
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
|
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
|
||||||
# * Recursive globbing, e.g. `echo **/*.txt`
|
# * Recursive globbing, e.g. `echo **/*.txt`
|
||||||
|
@ -86,8 +86,6 @@
|
|||||||
};
|
};
|
||||||
gaming = {
|
gaming = {
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
emulation.enable = true;
|
|
||||||
misc.enable = true;
|
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
jellyfin.enable = false;
|
jellyfin.enable = false;
|
||||||
|
@ -91,8 +91,6 @@
|
|||||||
};
|
};
|
||||||
gaming = {
|
gaming = {
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
emulation.enable = true;
|
|
||||||
misc.enable = true;
|
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
jellyfin.enable = false;
|
jellyfin.enable = false;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./steam.nix ./misc.nix ./emulation.nix ];
|
imports = [ ./steam.nix ];
|
||||||
}
|
}
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
{ config, lib, pkgs, user, ... }:
|
|
||||||
|
|
||||||
let cfg = config.modules.gaming.emulation;
|
|
||||||
in {
|
|
||||||
options.modules.gaming.emulation.enable = lib.mkEnableOption "emulation";
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
yuzu-archive
|
|
||||||
citra-archive
|
|
||||||
dolphin-emu
|
|
||||||
ppsspp
|
|
||||||
mgba
|
|
||||||
ares
|
|
||||||
(retroarch.override {
|
|
||||||
cores = with libretro; [
|
|
||||||
nestopia
|
|
||||||
snes9x
|
|
||||||
mgba
|
|
||||||
melonds
|
|
||||||
];
|
|
||||||
})
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{ config, lib, pkgs, user, ... }:
|
|
||||||
|
|
||||||
let cfg = config.modules.gaming.misc;
|
|
||||||
in {
|
|
||||||
options.modules.gaming.misc.enable = lib.mkEnableOption "misc";
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
sunshine
|
|
||||||
moonlight-qt
|
|
||||||
prismlauncher
|
|
||||||
jdk17
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -18,6 +18,17 @@ in {
|
|||||||
steam
|
steam
|
||||||
steamtinkerlaunch
|
steamtinkerlaunch
|
||||||
gamescope
|
gamescope
|
||||||
|
yuzu-archive
|
||||||
|
citra-archive
|
||||||
|
dolphin-emu
|
||||||
|
ppsspp
|
||||||
|
mgba
|
||||||
|
ares
|
||||||
|
sunshine
|
||||||
|
moonlight-qt
|
||||||
|
prismlauncher
|
||||||
|
jdk17
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,6 @@ in {
|
|||||||
bash-completion
|
bash-completion
|
||||||
tmux
|
tmux
|
||||||
tmuxp
|
tmuxp
|
||||||
thefuck
|
|
||||||
|
|
||||||
nnn
|
nnn
|
||||||
# for nnn
|
# for nnn
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 730 KiB |
Binary file not shown.
Before Width: | Height: | Size: 619 KiB |
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 27 KiB |
Binary file not shown.
Before Width: | Height: | Size: 464 KiB |
Loading…
x
Reference in New Issue
Block a user