mail: Guard thunderbird behind GUI

nazuna
Simon Bruder 2023-05-05 17:13:30 +02:00
parent 896340bf20
commit ec98efdfd2
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 2 deletions

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
];
}