CrOS/shell.nix
2025-01-15 11:41:35 -05:00

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