set up dev environment

This commit is contained in:
Nickiel12 2023-12-17 20:06:01 -08:00
parent 352d140055
commit 8a990bac49
3 changed files with 74 additions and 0 deletions

4
.gitignore vendored
View file

@ -1,3 +1,7 @@
# --> Nix
.direnv/
.envrc
# ---> Android # ---> Android
# Gradle files # Gradle files
.gradle/ .gradle/

27
flake.lock Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1702539185,
"narHash": "sha256-KnIRG5NMdLIpEkZTnN5zovNYc0hhXjAgv6pfd5Z4c7U=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "aa9d4729cbc99dabacb50e3994dcefb3ea0f7447",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

43
flake.nix Normal file
View file

@ -0,0 +1,43 @@
{
description = "Dev environment for the Recount Mobile app - written in Kotlin";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs}:
let
# Generate a user-friendly version number.
version = builtins.substring 0 8 self.lastModifiedDate;
# System types to support.
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
# Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'.
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
# Nixpkgs instantiated for supported system types.
nixpkgsFor = forAllSystems (system:
import nixpkgs {
inherit system;
config.allowUnfree = true;
}
);
in {
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in{
default = pkgs.mkShell {
buildInputs = with pkgs; [
android-udev-rules
android-studio
android-tools
];
};
});
};
}