mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 15:19:18 -08:00
8 lines
123 B
Nix
8 lines
123 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
inherit (pkgs) mkShell cobalt;
|
|
in
|
|
mkShell {
|
|
packages = [
|
|
cobalt
|
|
];
|
|
}
|