flake.nix: expose mattermost under packages.*

this makes it easier to update, e.g. by doing "nix-update -F
mattermost".
This commit is contained in:
stuebinm 2024-08-30 17:56:10 +02:00
parent 4dc9cdac91
commit c295604a13

View file

@ -83,6 +83,10 @@
self.nixosConfigurations.parsons.config.hacc.websites.builders; self.nixosConfigurations.parsons.config.hacc.websites.builders;
in in
{ docs = websites."docs.hacc.space"; } // websites; { docs = websites."docs.hacc.space"; } // websites;
packages.x86_64-linux = {
inherit (pkgs) mattermost;
};
}; };
} }