nixcfg/homeManagerModules/apps/firefox/default.nix

11 lines
146 B
Nix
Raw Normal View History

{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.alyraffauf.apps.firefox.enable {
programs.firefox = {enable = true;};
};
}