Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
10 lines
193 B
Nix
10 lines
193 B
Nix
# might make this bad boy a factory later
|
|
{
|
|
flake.modules.homeManager.thunderbird = {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.default.isDefault = true;
|
|
};
|
|
};
|
|
}
|