wiki/flake.nix

7 lines
205 B
Nix
Raw Normal View History

2022-04-01 08:37:05 +00:00
{
description = "The flake for this project.";
outputs = inputs@{ self, nixpkgs, ... }: {
devShell.x86_64-linux = import ./shell.nix { pkgs = import nixpkgs { system = "x86_64-linux"; }; };
};
}