21 lines
392 B
Nix
21 lines
392 B
Nix
|
{
|
||
|
description = "Collection of packages and overlays used by me";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs }:
|
||
|
let
|
||
|
system = "x86_64-linux";
|
||
|
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
packages.${system} = pkgs.callPackage ./stackpkgs.nix {};
|
||
|
overlays.default = import ./overlay.nix;
|
||
|
};
|
||
|
}
|