infra/overlays/default.nix
teutat3s b15f7a38f2
Some checks failed
Flake checks / Check (pull_request) Failing after 2m22s
wip: init host underground to test mas
related to #242
2024-10-26 02:03:31 +02:00

29 lines
810 B
Nix

{ self, inputs, ... }:
{
flake = {
nixosModules = rec {
overlays = (
{ ... }:
{
nixpkgs.overlays = [
(
final: prev:
let
unstable = import inputs.unstable { system = prev.system; };
in
{
element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; };
element-stickerpicker = prev.callPackage ./pkgs/element-stickerpicker {
inherit (inputs) element-stickers maunium-stickerpicker;
};
mastodon = unstable.mastodon;
matrix-authentication-service = unstable.matrix-authentication-service;
}
)
];
}
);
};
};
}