mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
12 lines
190 B
Nix
12 lines
190 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
ranger
|
|
];
|
|
|
|
xdg.configFile."ranger/rc.conf".text = ''
|
|
set preview_images true
|
|
set preview_images_method kitty
|
|
'';
|
|
}
|