nix-da/home/thunderbird/default.nix
Nydragon d89eb790b1
init: flakeify the majority of my config
Remaining point of focus is making the sway config working properly
2024-05-13 15:34:22 +09:00

10 lines
204 B
Nix

{ pkgs, config, lib, ... }: {
programs.thunderbird = {
enable = true;
#settings = { mailnews.wraplength = 80; };
profiles.nico = {
isDefault = true;
name = "nico";
};
};
}