6 lines
120 B
Nix
6 lines
120 B
Nix
{ nixosConfig, lib, ... }:
|
|
{
|
|
programs.thunderbird = lib.mkIf nixosConfig.my.desktop.enable {
|
|
enable = true;
|
|
};
|
|
} |