Added ranger

This commit is contained in:
FredzyW 2025-01-17 10:07:11 +01:00
parent 8183311e1e
commit 8904240276

9
shared/ranger.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, lib, ... }:
{
programs.firefox = {
enable = true;
extraConfig = ''
set colorscheme dracula
'';
};
}