dotfiles/home-manager/programs/firefox.nix

8 lines
115 B
Nix

{ config, ... }:
{
programs.firefox = {
enable = if config.machine.isGraphical then true else false;
};
}