modified toolchain, added helix editor

This commit is contained in:
2025-11-20 23:57:53 +02:00
parent 7b300987b7
commit f68b1bb276
3 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
{
description = "stdsrv Flake file";
description = "gravel project flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
@@ -14,16 +14,17 @@
flake-utlis.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {inherit system;};
stdsrv = import ./package.nix {inherit pkgs;};
gravel = import ./package.nix {inherit pkgs;};
in {
packages.default = stdsrv;
packages.default = gravel;
devShells.default = pkgs.mkShell {
packages = [
pkgs.rustup
pkgs.bacon
pkgs.cargo-nextest
pkgs.cargo-expand
pkgs.cargo-watch
packages = with pkgs; [
rustup
helix
bacon
cargo-nextest
cargo-expand
cargo-watch
];
};
}

View File

@@ -3,7 +3,6 @@
use args::ProgramArgs;
use cracked_md::generate;
use error::Error;
//use slogger::{LOG_LEVEL, Level};
use stdsrv::serve;
mod args;

View File

@@ -5,5 +5,6 @@ targets = [
]
components = [
"clippy",
"rustfmt"
"rustfmt",
"rust-analyzer"
]