Files
nix-infrastructure/shell.nix
henrik b70f00fa0f
Some checks failed
Nix Web Proxy Worker / setup-nixos-runner (push) Failing after 12s
Adds coreutils for sleep command
2025-10-03 16:33:19 +02:00

19 lines
330 B
Nix

let
sources = import ./npins;
pkgs = import sources.nixpkgs {};
in
pkgs.mkShell {
packages = with pkgs; [
coreutils
];
nativeBuildInputs = with pkgs; [
npins
nixos-anywhere
nixos-rebuild
];
shellHook = ''
export NIX_PATH="nixpkgs=${sources.nixpkgs}:nixos-config=$PWD/configuration.nix"
'';
}