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 = { inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable"; nixpkgs.url = "nixpkgs/nixos-unstable";
@@ -14,16 +14,17 @@
flake-utlis.lib.eachDefaultSystem ( flake-utlis.lib.eachDefaultSystem (
system: let system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
stdsrv = import ./package.nix {inherit pkgs;}; gravel = import ./package.nix {inherit pkgs;};
in { in {
packages.default = stdsrv; packages.default = gravel;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = [ packages = with pkgs; [
pkgs.rustup rustup
pkgs.bacon helix
pkgs.cargo-nextest bacon
pkgs.cargo-expand cargo-nextest
pkgs.cargo-watch cargo-expand
cargo-watch
]; ];
}; };
} }

View File

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

View File

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