CrOS/shell.nix
2025-02-07 11:57:56 -05:00

13 lines
269 B
Nix

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