Files
sessionzero-odin/shell.nix

14 lines
158 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
odin
ols
];
shellHook = ''
echo "Odin Shell"
'';
}