1
Fork 0
satellite/devshells/bootstrap/shell.nix

8 lines
305 B
Nix
Raw Permalink Normal View History

2022-12-28 13:27:18 +01:00
# Shell for bootstrapping flake-enabled nix and home-manager
2023-12-10 23:48:46 +01:00
{ pkgs ? (import ./nixpkgs.nix) { }, ... }:
2023-04-14 17:12:35 +02:00
pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
2023-12-04 06:25:00 +01:00
packages = with pkgs; [ nix home-manager git ];
2022-12-28 13:27:18 +01:00
}