overlay/flake.nix

51 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2024-07-09 21:17:09 +00:00
{
description = "my overlay";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
];
2024-07-09 22:06:00 +00:00
};
in
{
overlays.default = final: prev: {
modules = {
matrix-alertmanager-receiver = import ./modules/matrix-alertmanager-receiver.nix;
2024-07-14 20:42:24 +00:00
scanbd = import ./modules/scanbd.nix;
};
2024-07-09 22:06:00 +00:00
hacompanion = prev.callPackage ./hacompanion { };
cpthook = prev.callPackage ./cpthook { };
2024-07-09 21:17:09 +00:00
python3 = prev.python3.override {
packageOverrides = python-final: python-prev: {
pytapo = python-final.callPackage ./pytapo { };
brother-ql = python-final.callPackage ./brother-ql { };
};
2024-07-09 21:17:09 +00:00
};
#gotosocial = prev.callPackage ./gotosocial { };
#pulse-secure = prev.callPackage ./pulse-secure { };
studio-link = prev.callPackage ./studio-link { };
#nginxModules = prev.recurseIntoAttrs (super.callPackage ./nginx/modules.nix { });
libedgetpu = final.callPackage ./libedgetpu { };
neolink = final.callPackage ./neolink { };
#mealie = final.callPackage ./mealie { };
gohome = final.callPackage ./gohome { };
matrix-alertmanager-receiver = final.callPackage ./matrix-alertmanager-receiver { };
vimPlugins = prev.vimPlugins.extend (final': super': {
netrw-nvim = prev.callPackage ./netrw-nvim { };
});
salt-lint = prev.callPackage ./salt-lint { };
};
2024-07-09 21:17:09 +00:00
};
}