Initial commit

This commit is contained in:
Tibo De Peuter 2023-06-14 17:41:41 +02:00
commit 5d8463699f
11 changed files with 405 additions and 0 deletions

25
minecraft/flake.nix Normal file
View file

@ -0,0 +1,25 @@
{
description = "Minecraft flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
minecraft
libredirect # Can be removed?
glibc
];
};
}
);
}