This commit is contained in:
waalge 2023-02-23 19:44:57 +00:00 committed by Lucas
parent 079017d24c
commit 031507bea2
1 changed files with 3 additions and 3 deletions

View File

@ -47,12 +47,12 @@
]; ];
in rec { in rec {
inherit packages; inherit packages;
devShell = rustPkgs.workspaceShell { }; devShell = rustPkgs.workspaceShell {};
devShells = { devShells = {
aiken = pkgs.devshell.mkShell { aiken = pkgs.devshell.mkShell {
name = "aiken"; name = "aiken";
motd = '' Aiken motd = '' Aiken
$(type -p menu &>/dev/null && menu)''; $(type -p menu &>/dev/null && menu)'';
commands = aikenCmds; commands = aikenCmds;
}; };
}; };