10 lines
180 B
Nix
10 lines
180 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.home.firefox.tridactyl;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
xdg.configFile."tridactyl/tridactylrc".source = ./tridactylrc;
|
|
};
|
|
}
|