Home Gen309 @ 2024-07-27-19:38
This commit is contained in:
parent
c9779fdc4c
commit
a939132a12
@ -11,6 +11,7 @@
|
|||||||
./hyprland
|
./hyprland
|
||||||
./kitty
|
./kitty
|
||||||
./mqtt-explorer
|
./mqtt-explorer
|
||||||
|
./ranger
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./themes/gtk
|
./themes/gtk
|
||||||
./themes/qt
|
./themes/qt
|
||||||
|
|||||||
11
home/jonas/ranger/config.nix
Normal file
11
home/jonas/ranger/config.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{config, ...}: {
|
||||||
|
programs.ranger = {
|
||||||
|
settings = {
|
||||||
|
preview_images = true;
|
||||||
|
preview_images_method =
|
||||||
|
if config.programs.kitty.enable
|
||||||
|
then "kitty"
|
||||||
|
else "ueberzug";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
6
home/jonas/ranger/default.nix
Normal file
6
home/jonas/ranger/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./config.nix
|
||||||
|
./ranger.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
3
home/jonas/ranger/ranger.nix
Normal file
3
home/jonas/ranger/ranger.nix
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{...}: {
|
||||||
|
programs.kitty.enable = true;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user