mirror of
https://codeberg.org/27/inception-of-things.git
synced 2025-08-11 20:12:53 +02:00
12 lines
137 B
Nix
12 lines
137 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nixos-generators
|
|
];
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et
|