users/kat/gui: Add ranger

This commit is contained in:
kat witch 2021-06-20 03:12:12 +01:00
parent fb19e8bace
commit e6b76a69ff
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 13 additions and 1 deletions

View file

@ -3,7 +3,7 @@
{
deploy.profile.gui = true;
imports = [ ./firefox ./kitty.nix ./packages.nix ./gtk.nix ./wezterm.nix ./foot.nix ./xdg.nix ];
imports = [ ./firefox ./kitty.nix ./packages.nix ./gtk.nix ./wezterm.nix ./foot.nix ./xdg.nix ./ranger.nix ];
fonts.fontconfig.enable = true;
}

12
users/kat/gui/ranger.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
ranger
];
xdg.configFile."ranger/rc.conf".text = ''
set preview_images true
set preview_images_method iterm2
'';
}