rix101/shells/default/default.nix
reo101 1c809e1460
fix(nix-monitored)!: put in nixVersions.monitored
Also fix `devShell`
  - did not correctly use the `monitored` version of `nix`
Also apply the overlays to the `pkgs` instance, used by `flake-parts`
2024-06-01 16:07:36 +03:00

21 lines
497 B
Nix

# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs
, inputs
, outputs
, ...
}: pkgs.mkShell {
NIX_CONFIG = ''
extra-experimental-features = nix-command flakes
'';
nativeBuildInputs = with pkgs; [
nixVersions.monitored.latest
home-manager
git
wireguard-tools
deploy-rs
# inputs.agenix.packages.${pkgs.system}.agenix
# inputs.ragenix.packages.${pkgs.system}.ragenix
rage
inputs.agenix-rekey.packages.${pkgs.system}.agenix-rekey
];
}