dotfiles/.config/nixshell/cpp.nix
2023-04-08 16:59:16 +02:00

9 lines
110 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
];
}