idiosyn/home/config/nil/thunderbird.nix

11 lines
245 B
Nix
Raw Permalink Normal View History

2024-08-25 19:10:52 +02:00
{ ... }: { config, lib, pkgs, ... }@args:
let
osConfig = args.osConfig or { };
in lib.mkIf (osConfig.hardware.graphics.enable or false) {
programs.thunderbird = {
enable = true;
package = pkgs.thunderbird;
profiles = { };
};
}