wiki/flake.nix
2022-04-01 16:37:05 +08:00

7 lines
205 B
Nix

{
description = "The flake for this project.";
outputs = inputs@{ self, nixpkgs, ... }: {
devShell.x86_64-linux = import ./shell.nix { pkgs = import nixpkgs { system = "x86_64-linux"; }; };
};
}