mail: Guard thunderbird behind GUI

This commit is contained in:
Simon Bruder 2023-05-05 17:13:30 +02:00
parent 896340bf20
commit ec98efdfd2
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ lib, nixosConfig, pkgs, ... }:
{
imports = [
#./accounts.nix
@ -6,7 +6,7 @@
#./notmuch.nix
];
home.packages = with pkgs; [
home.packages = with pkgs; lib.optionals nixosConfig.sbruder.gui.enable [
thunderbird
];
}