blob: cb7b97cb94dcd5e3d7c56b5bd4d787bb15e3560f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
inputs.nixpkgs.url = "github:nixos/nixpkgs";
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
in {
packages.${system}.default = import ./. {inherit pkgs;};
devShells.${system}.default = self.packages.${system}.default.env;
};
}
|