nixos-config/home/tridactyl.nix

14 lines
329 B
Nix
Raw Normal View History

2021-07-29 12:17:41 +02:00
{ config, lib, ... }:
let
cfg = config.my.home.tridactyl;
in
{
options.my.home.tridactyl = with lib; {
enable = (mkEnableOption "tridactyl code display tool") // { default = config.my.home.firefox.enable; };
};
config = lib.mkIf cfg.enable {
xdg.configFile."tridactyl/tridactylrc".source = ./tridactylrc;
};
}