Archive Codeberg issue attachments

This commit is contained in:
ARKHOST21
2026-07-23 15:17:08 +02:00
commit 36311404ea
87 changed files with 1412 additions and 0 deletions
@@ -0,0 +1,38 @@
{
description = "HelixNotes devshell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = {
self,
nixpkgs,
...
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
in {
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
pkg-config
wrapGAppsHook4
cargo
cargo-tauri
nodejs_25
pnpm_9
];
buildInputs = with pkgs; [
librsvg
webkitgtk_4_1
];
shellHook = ''
export XDG_DATA_DIRS="$GSETTINGS_SCHEMAS_PATH" # Needed on Wayland to report the correct display scale
'';
};
formatter.${system} = pkgs.alejandra;
};
}