ranger: add rc.conf

This commit is contained in:
Primrose 2025-02-19 21:16:11 +01:00
parent 1eb796cee7
commit 95f9ff40af
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 793 additions and 3 deletions

View file

@ -0,0 +1,11 @@
{
config,
lib,
...
}: let
cfg = config.programs.ranger;
in {
xdg.configFile = lib.mkIf cfg.enable {
"ranger/rc.conf".source = ./rc.conf;
};
}