[compression] add to all machines the brotli-compression

This commit is contained in:
Felix Buehler 2021-06-08 21:54:39 +02:00
parent 442398712d
commit 124e582896
3 changed files with 8 additions and 0 deletions

6
extra/compression.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
brotli
];
}