nixconf/home-manager/thunderbird.nix
Gabriella Bere 4b4fb48908 fixed the thunderbird commit
it had some stupid error about profiles idc though its 2330 rn im meant
to be in bed
2025-08-11 23:29:08 +01:00

8 lines
238 B
Nix

{ pkgs, ... }:{
programs.thunderbird = {
enable = false; # at time of writing this causes an annoying error talking about profiles, so im just gonna use the package for now
};
home.packages = with pkgs; [
thunderbird
];
}