update frigate to use nixos-unstable-small

This commit is contained in:
TheWanderingCrow 2025-03-06 09:15:33 -05:00
parent 445adc0c55
commit c6a9c09452
2 changed files with 5 additions and 0 deletions

View file

@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";

View file

@ -1,4 +1,5 @@
{
inputs,
config,
pkgs,
...
@ -42,6 +43,9 @@
else []
);
};
overlays = [
(final: prev: {frigate = inputs.unstable-small.legacyPackages.${prev.system}.frigate;})
];
};
};
}