Moritz Bitsch
ff7c4b0dd7
vscode is just too slow on my notebook, use helix with marksman as alternative
17 lines
444 B
Nix
17 lines
444 B
Nix
{
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
};
|
|
|
|
outputs = { self, flake-utils, nixpkgs }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = (import nixpkgs) { inherit system; };
|
|
in {
|
|
# For `nix develop`:
|
|
devShell = pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [ helix marksman lazygit ];
|
|
};
|
|
});
|
|
}
|