mirror of
https://github.com/NixOS/templates.git
synced 2026-01-11 16:58:27 +01:00
16 lines
309 B
Nix
16 lines
309 B
Nix
{
|
|
inputs = {
|
|
utils.url = "github:numtide/flake-utils";
|
|
};
|
|
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|