Files
inception-of-things/shell.nix
xtrm e9f538ed92 🔨 chore: initial commit
Signed-off-by: xtrm <oss@xtrm.me>
2025-02-19 13:05:06 +01:00

12 lines
137 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nixos-generators
];
}
# vim: ts=2 sw=2 et