20 lines
296 B
Nix
20 lines
296 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
...
|
|
}:
|
|
{
|
|
default = pkgs.mkShell {
|
|
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
|
|
sops
|
|
ssh-to-age
|
|
gnupg
|
|
age
|
|
];
|
|
};
|
|
}
|