feat(deps): add dep build workflow
All checks were successful
/ deploy-and-package (push) Successful in 1m19s

This commit is contained in:
Alois 2026-08-09 22:34:19 +02:00
commit 7194ba72fd
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
5 changed files with 110 additions and 89 deletions

27
flake.nix Normal file
View file

@ -0,0 +1,27 @@
{
description = "Methanium UI development environment";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }:
let
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
];
in
{
devShells = forAllSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
electron = pkgs.mkShell {
packages = with pkgs; [
nodejs_24
pnpm
];
};
});
};
}