More Jupiter adjustments
This commit is contained in:
parent
6670e7bb0c
commit
5cdd5989dd
9 changed files with 31 additions and 47 deletions
|
@ -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 ]);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue