First Commit

This commit is contained in:
ast-ak47
2026-05-18 00:27:27 +09:00
parent a8bf6ffbca
commit d4b55a17a0
9 changed files with 548 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
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 ];
};
}
);
}