remove programs from non graphical envs

This commit is contained in:
Thilo Billerbeck 2024-02-01 15:21:49 +01:00
commit 5c9e9661f8
4 changed files with 8 additions and 6 deletions
home-manager/programs

View file

@ -1,5 +1,7 @@
{ config, ... }:
{
programs.firefox = {
enable = true;
enable = if config.machine.isGraphical then true else false;
};
}