Skip to content

Instantly share code, notes, and snippets.

@rickhull
Last active May 26, 2024 20:21
Show Gist options
  • Save rickhull/abd411eec889cab24cc180875f5eb38b to your computer and use it in GitHub Desktop.
Save rickhull/abd411eec889cab24cc180875f5eb38b to your computer and use it in GitHub Desktop.
# https://github.com/Gerg-L/nix-templates/blob/master/devShell%2Fflake.nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
{
devShells.x86_64-linux =
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
default = pkgs.mkShell {
packages = [ pkgs.ruby_3_3 ];
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment