1
Fork 0
satellite/shell.nix

9 lines
365 B
Nix
Raw Normal View History

2022-12-28 13:27:18 +01:00
# Shell for bootstrapping flake-enabled nix and home-manager
# You can enter it through 'nix develop' or (legacy) 'nix-shell'
2023-04-14 17:12:35 +02:00
{ pkgs ? (import ./nixpkgs.nix) { } }:
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
}