initial iceshrimp package

This commit is contained in:
twoneis 2025-02-08 17:18:54 +01:00
parent 06617a2e1d
commit 36eb89f9c9

View file

@ -1,5 +1,8 @@
{ lib, config, ... }: let { lib, pkgs, config, ... }: let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (config) conf; inherit (config) conf;
in mkIf conf.fedi.enable { in mkIf conf.fedi.enable {
environment.systemPackages = [
(pkgs.callPackage ./iceshrimp.nix { })
];
} }