diff --git a/flake.nix b/flake.nix index 71eaba5..6d77918 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/modules/core.nix b/modules/core.nix index 03e7b16..cc4335d 100644 --- a/modules/core.nix +++ b/modules/core.nix @@ -1,4 +1,5 @@ { + inputs, config, pkgs, ... @@ -42,6 +43,9 @@ else [] ); }; + overlays = [ + (final: prev: {frigate = inputs.unstable-small.legacyPackages.${prev.system}.frigate;}) + ]; }; }; }