Merge branch 'main' of git.lillianviolet.dev:Lillian-Violet/dev-templates

This commit is contained in:
Lillian Violet 2024-02-28 12:04:51 +01:00
commit 5efb27e62b

View file

@ -3,8 +3,10 @@
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz"; inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
outputs = { self, nixpkgs }: outputs = {
let self,
nixpkgs,
}: let
javaVersion = 20; # Change this value to update the whole stack javaVersion = 20; # Change this value to update the whole stack
overlays = [ overlays = [
(final: prev: rec { (final: prev: rec {
@ -14,14 +16,21 @@
}) })
]; ];
supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"]; supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems (system:
f {
pkgs = import nixpkgs {inherit overlays system;}; pkgs = import nixpkgs {inherit overlays system;};
}); });
in in {
{
devShells = forEachSupportedSystem ({pkgs}: { devShells = forEachSupportedSystem ({pkgs}: {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = with pkgs; [gradle jdk maven]; packages = with pkgs; [gradle jdk maven];
programs.vscode = {
extensions = with pkgs.vscode-extensions; [
mkhl.direnv
redhat.java
];
};
}; };
}); });
}; };