machine-config/shell.nix

12 lines
225 B
Nix
Raw Permalink Normal View History

2024-11-05 23:58:14 -06:00
let
# nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import <nixpkgs> { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
# nixd
gnumake
];
}