CrOS/shell.nix
2024-09-13 15:37:26 +00:00

6 lines
193 B
Nix

{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [git neovim nix];
};
}