aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: c1395d554c9d146977266b3f408e2ae62336e3fc (plain)
1
2
3
4
5
6
7
8
9
10
# Shell for bootstrapping flake-enabled nix and home-manager
# You can enter it through 'nix develop' or (legacy) 'nix-shell'

{ pkgs ? (import ./nixpkgs.nix) { } }: {
  default = pkgs.mkShell {
    # Enable experimental features without having to specify the argument
    NIX_CONFIG = "experimental-features = nix-command flakes";
    nativeBuildInputs = with pkgs; [ nix home-manager git neovim sops ];
  };
}