nixos_config/shell.nix

14 lines
186 B
Nix
Raw Normal View History

2025-11-17 10:42:27 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "nixos_config";
buildInputs = with pkgs; [
git
pre-commit
];
shellHook = ''
echo "NixOS Config Shell"
'';
}