From b01af394452972bd1f0ffecc96774e1a8efc8736 Mon Sep 17 00:00:00 2001 From: jk Date: Tue, 24 Oct 2023 17:26:50 +0200 Subject: [PATCH] typo + cleanup --- README.md | 2 +- flake.nix | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 05d84d0b..16dab37e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/flake.nix b/flake.nix index 1feaa31c..047b0c01 100644 --- a/flake.nix +++ b/flake.nix @@ -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 =