dotfiles/home-manager/programs/firefox.nix

8 lines
146 B
Nix
Raw Normal View History

{ config, ... }:
2023-11-13 17:54:16 +01:00
{
programs.firefox = {
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
2023-11-13 17:54:16 +01:00
};
2024-02-27 02:54:02 +01:00
}