nixos/modules/shell/ranger/default.nix

17 lines
278 B
Nix
Raw Normal View History

2023-07-29 16:57:41 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.shell.ranger;
in
{
options.modules.shell.ranger = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
ranger
];
};
}