iceshrimp: does not fail to build but doesn't work

This commit is contained in:
twoneis 2025-03-13 22:43:18 +01:00
parent 82742e291d
commit d69f3e0bef
4 changed files with 39 additions and 17 deletions

View file

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