CrOS/shell.nix
2025-01-06 13:44:01 -05:00

12 lines
268 B
Nix

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