add ranger file browser

This commit is contained in:
Ingolf Wagner 2023-07-10 22:32:56 +02:00
parent 145c659326
commit 8d1c994687
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ config, pkgs, lib, ... }:
with lib;
{
options.components.terminal = {
@ -19,6 +19,8 @@ with lib;
];
config = mkIf config.components.terminal.enable {
# todo extract xorg stuff to prepare wayland
environment.systemPackages = [
pkgs.ranger
];
};
}