11 lines
197 B
Nix
11 lines
197 B
Nix
{ nixosConfig, lib, ... }:
|
|
{
|
|
programs.thunderbird = lib.mkIf nixosConfig.my.desktop.enable {
|
|
enable = true;
|
|
profiles = {
|
|
default = {
|
|
name = "default";
|
|
};
|
|
};
|
|
};
|
|
} |