mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-14 12:58:49 +01:00
7 lines
115 B
Nix
7 lines
115 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.firefox = {
|
|
enable = if config.machine.isGraphical then true else false;
|
|
};
|
|
}
|