spacefrogg-overlay/flake.nix

15 lines
334 B
Nix
Raw Normal View History

2020-12-06 13:09:02 +01:00
{
description = "Privately maintained packages";
inputs.nixpkgs = {
type = "indirect";
id = "nixpkgs";
};
outputs = { nixpkgs, ... }: rec {
2020-12-06 13:09:02 +01:00
overlay = import ./default.nix;
2022-06-08 14:01:14 +02:00
legacyPackages."x86_64-linux" = import nixpkgs { system = "x86_64-linux"; overlays = [ overlay ]; config.allowUnfree = true; };
2020-12-06 13:09:02 +01:00
};
}