1

trusted users + restructure folders

This commit is contained in:
2022-08-11 14:17:06 +02:00
parent f3d9fe98ae
commit a957ebf480
20 changed files with 2 additions and 1 deletions

31
home/modules/ranger.nix Normal file
View File

@ -0,0 +1,31 @@
{ config, nixosConfig, lib, mylib, pkgs, ... }:
with lib;
with mylib.modules;
let
cfg = config.modules.ranger;
in {
options.modules.ranger = {
enable = mkEnableOpt "Ranger";
};
# TODO: Ranger configuration
config = mkIf cfg.enable {
home.packages = with pkgs; [
ranger
ueberzug
ffmpegthumbnailer
atool
p7zip
zip
unzip
unrar
libarchive
exiftool
mediainfo
];
};
}