it had some stupid error about profiles idc though its 2330 rn im meant to be in bed
8 lines
238 B
Nix
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
|
|
];
|
|
}
|