nix-config/shell.nix
2025-08-02 22:51:40 +09:00

9 lines
117 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nix
home-manager
git
];
}