diff --git a/users/kat/gui/default.nix b/users/kat/gui/default.nix index 8a1a58af..3a4cd3aa 100644 --- a/users/kat/gui/default.nix +++ b/users/kat/gui/default.nix @@ -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; } diff --git a/users/kat/gui/ranger.nix b/users/kat/gui/ranger.nix new file mode 100644 index 00000000..0e294078 --- /dev/null +++ b/users/kat/gui/ranger.nix @@ -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 + ''; +}