This commit is contained in:
41666 2025-01-02 18:32:25 -08:00
parent c5284f1992
commit dc17868235
8 changed files with 127 additions and 9 deletions

View file

@ -1,15 +1,23 @@
{ pkgs, ... }: {
{ pkgs, lib, config, ... }: {
home.activation.retroarch-config-link = lib.hm.dag.entryAfter ["writeBoundary"] ''
run ln -s $VERBOSE_ARG \
${builtins.toPath /mnt/nas0/noe/games/retroarch} \
$HOME/.config/retroarch
'';
home.packages = [
(pkgs.retroarch.withCores (
cores: with cores; [
pcsx2
ppsspp
snes9x
dolphin
mupen64plus
desmume
vba-m
]
] ++ (if pkgs.system == "x86_64-linux" then [
# stuff that doesn't happen on ARM
pcsx2
] else [])
))
];
}

View file

@ -0,0 +1,15 @@
{ pkgs, ... }: {
imports = [
../common
../common/home-user.nix
../../features/kitty.nix
../../features/retroarch.nix
];
home.packages = with pkgs; [
vlc
];
programs.kitty.settings.font_size = 12;
}