typo + cleanup

This commit is contained in:
jk 2023-10-24 17:26:50 +02:00
parent 4dfea49f71
commit b01af39445
2 changed files with 4 additions and 7 deletions

View File

@ -47,4 +47,4 @@ Requirements:
1. [Install Nix](https://zero-to-flakes.com/install)
1. [Setup `direnv`](https://zero-to-flakes.com/direnv)
By `cd` into the root folder of the project you will enter the `nix develop` shell. Run `direnv allow` (only once needed). Then just use run `pnpm` or `bun` (experimental) commands as descirbed above.
`cd` into the root folder of the project to enter `nix develop` shell. Run `direnv allow` (only once). Then run `pnpm` or `bun` (experimental) commands as described above.

View File

@ -1,15 +1,12 @@
# Nix.flake to build Lume
#
# It follows guidelines of Taiuri's Guides:
# Nix.flake to build Lume based on Tauri's Guides:
# Prerequisites -> Installing -> Setting Up Linux -> NixOS
# https://tauri.app/v1/guides/getting-started/prerequisites/#1-system-dependencie
# https://tauri.app/v1/guides/getting-started/prerequisites/#1-system-dependencies
#
# To build Rust backend of Tauri `rust-overlay` is used
# https://github.com/oxalica/rust-overlay
{
inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
rust-overlay.url = "github:oxalica/rust-overlay";
@ -57,7 +54,7 @@
rustToolchain
pkgs.nodejs
pkgs.nodePackages.pnpm
pkgs.bun # experimental in lume
pkgs.bun # experimental in Lume
] ++ packages;
shellHook =