1
Fork 0
satellite/shell.nix
2023-12-04 06:25:00 +01:00

9 lines
365 B
Nix

# Shell for bootstrapping flake-enabled nix and home-manager
# You can enter it through 'nix develop' or (legacy) 'nix-shell'
{ pkgs ? (import ./nixpkgs.nix) { } }:
pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
packages = with pkgs; [ nix home-manager git ];
}