More Jupiter adjustments

This commit is contained in:
Bun 2025-04-28 03:54:22 -04:00
parent 6670e7bb0c
commit 5cdd5989dd
9 changed files with 31 additions and 47 deletions

View file

@ -1,11 +1,12 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, pkgsUnstable, ... }:
{
home.packages = with pkgs; lib.mkIf config.home.gaming.enable [
dolphin-emu-beta
cemu
ryujinx
lime3ds
duckstation
pcsx2
];
config = lib.mkIf config.home.desktop.enable {
home.packages = (with pkgs; [
cemu
dolphin-emu-beta
duckstation
pcsx2
ryujinx
]) ++ (with pkgsUnstable; [ azahar ]);
};
}

View file

@ -1,7 +1,8 @@
{ config, pkgs, ... }:
{ config, pkgsStable, ... }:
{
programs.ranger = {
enable = true;
package = pkgsStable.ranger;
settings = {
preview_images = true;
preview_images_method = "sixel";
@ -115,7 +116,7 @@
P:/home/${config.home.username}/Network/Midas/Photos
'';
};
packages = with pkgs; [
packages = with pkgsStable; [
imagemagick
poppler_utils
];