mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
9 lines
96 B
Nix
9 lines
96 B
Nix
{
|
|
pkgs ? import <nixpkgs> {},
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.shellcheck
|
|
];
|
|
}
|