24 lines
No EOL
417 B
Nix
24 lines
No EOL
417 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.aquatic-gui =
|
|
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
thunderbird
|
|
];
|
|
};
|
|
|
|
flake.modules.homeManager.aquatic-gui =
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.aqua = {
|
|
isDefault = true;
|
|
extensions = [ ];
|
|
settings = {
|
|
"extensions.autoDisableScopes" = 0;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |