Home Gen309 @ 2024-07-27-19:38

This commit is contained in:
Jonas Röger 2024-07-30 19:40:24 +02:00
parent c9779fdc4c
commit a939132a12
4 changed files with 21 additions and 0 deletions

View File

@ -11,6 +11,7 @@
./hyprland
./kitty
./mqtt-explorer
./ranger
./ssh.nix
./themes/gtk
./themes/qt

View File

@ -0,0 +1,11 @@
{config, ...}: {
programs.ranger = {
settings = {
preview_images = true;
preview_images_method =
if config.programs.kitty.enable
then "kitty"
else "ueberzug";
};
};
}

View File

@ -0,0 +1,6 @@
{...}: {
imports = [
./config.nix
./ranger.nix
];
}

View File

@ -0,0 +1,3 @@
{...}: {
programs.kitty.enable = true;
}