CrOS/shell.nix
2025-01-06 14:03:48 -05:00

12 lines
264 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
];
};
}