12 lines
178 B
Nix
12 lines
178 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
libreoffice-qt
|
|
thunderbird
|
|
# gimp # Temporarily commented out to avoid build errors
|
|
# calibre
|
|
];
|
|
}
|