Bauke/cv
Bauke
/
cv
Archived
1
Fork 0
This repository has been archived on 2025-07-20. You can view files and clone it, but cannot push or open issues or pull requests.
cv/flake.nix

14 lines
310 B
Nix

{
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}