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

@ -15,10 +15,11 @@
blobhaj = pkgs.callPackage ./blobhaj.nix {};
blobhajFlags = pkgs.callPackage ./blobhajFlags.nix {};
favicon = pkgs.callPackage ./favicon.nix {};
iceshrimp = pkgs.callPackage ./iceshrimp/iceshrimp.nix {};
in
mkIf cfg.enable {
environment.systemPackages = [iceshrimp];
in {
imports = [
./iceshrimp
];
config = mkIf cfg.enable {
services.akkoma = {
enable = true;
frontends.primary = {
@ -74,4 +75,5 @@ in
forceSSL = true;
};
};
}
};
}