infra/overlays/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
454 B
Nix
Raw Normal View History

{ self
, inputs
, ...
}: {
flake = {
nixosModules = rec {
overlays = ({ ... }: {
nixpkgs.overlays = [
(final: prev:
let
unstable = import inputs.unstable {
system = prev.system;
};
in
{
2023-11-19 14:49:57 +00:00
element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; };
})
];
});
};
};
}