heyarne.aphorisms/flake.nix
2021-06-14 11:47:26 +02:00

11 lines
248 B
Nix

{
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell.${system} = import ./shell.nix { inherit pkgs; };
};
}