home: firefox: put modules into folders

This commit is contained in:
Bruno BELANYI 2021-09-25 15:28:27 +02:00
parent 7b75ea43ad
commit 8a9337710f
4 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,9 @@
{ config, lib, ... }:
let
cfg = config.my.home.firefox.tridactyl;
in
{
config = lib.mkIf cfg.enable {
xdg.configFile."tridactyl/tridactylrc".source = ./tridactylrc;
};
}