Files
sumika/flake.nix
T
2026-05-18 00:27:27 +09:00

32 lines
636 B
Nix

{
description = "flake.nix of sumika";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
config = {
android_sdk.accept_license = true;
allowUnfree = true;
};
};
in
{
devShell =
with pkgs;
mkShell {
buildInputs = with pkgs; [ go ];
};
}
);
}