modified toolchain, added helix editor
This commit is contained in:
19
flake.nix
19
flake.nix
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
use args::ProgramArgs;
|
||||
use cracked_md::generate;
|
||||
use error::Error;
|
||||
//use slogger::{LOG_LEVEL, Level};
|
||||
use stdsrv::serve;
|
||||
|
||||
mod args;
|
||||
|
||||
@@ -5,5 +5,6 @@ targets = [
|
||||
]
|
||||
components = [
|
||||
"clippy",
|
||||
"rustfmt"
|
||||
"rustfmt",
|
||||
"rust-analyzer"
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user