This commit is contained in:
kittywitch 2024-04-07 18:18:11 +00:00
parent 12c16c2a45
commit 482574b6e8
3 changed files with 88 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{pkgs ? import <nixpkgs> {}}: let
inherit (pkgs) mkShell cobalt;
in
mkShell {
packages = [
cobalt
];
}