make default devshell allow for actual devving

This commit is contained in:
waalge 2023-02-23 19:38:22 +00:00 committed by Lucas
parent 5d984d7ee4
commit 079017d24c
1 changed files with 6 additions and 13 deletions

View File

@ -47,20 +47,13 @@
];
in rec {
inherit packages;
devShell = pkgs.devshell.mkShell {
name = "aiken";
motd = '' Aiken
$(type -p menu &>/dev/null && menu)'';
commands = aikenCmds;
};
devShell = rustPkgs.workspaceShell { };
devShells = {
aiken = devShell;
ws = rustPkgs.workspaceShell {
packages = with pkgs; [
# nix
rnix-lsp
alejandra
];
aiken = pkgs.devshell.mkShell {
name = "aiken";
motd = '' Aiken
$(type -p menu &>/dev/null && menu)'';
commands = aikenCmds;
};
};
}