mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
7 lines
146 B
Nix
7 lines
146 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.firefox = {
|
|
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
|
|
};
|
|
}
|