Update for 25.05

This commit is contained in:
Bun 2025-05-28 18:19:50 -04:00
parent 8bfcca1bb8
commit 63c42b081d
12 changed files with 193 additions and 209 deletions

View file

@ -1,11 +1,11 @@
{ config, lib, pkgsStable, ... }:
{ config, lib, pkgs, ... }:
{
programs.ranger = {
enable = true;
package = pkgsStable.ranger;
#package = pkgs.ranger;
settings = {
preview_images = true;
preview_images_method = "sixel";
#preview_images_method = "sixel";
dirname_in_tabs = true;
autosave_bookmarks = false;
show_hidden = true;
@ -118,9 +118,6 @@
P:${XDG_NETWORK_DIR}/Midas/Photos
'';
};
packages = with pkgsStable; [
imagemagick
poppler_utils
];
packages = with pkgs; [ poppler_utils ];
};
}