idiosyn/home/config/nil/thunderbird.nix
Mikael Voss a08b1e5238
Some checks failed
nix flake check / check (aarch64-linux) (push) Has been cancelled
nix flake check / check (x86_64-linux) (push) Has been cancelled
Use custom Firefox flake
2024-11-16 17:10:10 +01:00

10 lines
281 B
Nix

{ firefox, ... }: { config, lib, pkgs, ... }@args:
let
osConfig = args.osConfig or { };
in lib.mkIf (osConfig.hardware.graphics.enable or false) {
programs.thunderbird = {
enable = true;
package = firefox.packages.${pkgs.system}.thunderbird;
profiles = { };
};
}