CrOS/shell.nix
2025-02-07 12:04:46 -05:00

16 lines
306 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
];
shellHook = ''
zsh
'';
};
}