reo101
1c809e1460
Also fix `devShell` - did not correctly use the `monitored` version of `nix` Also apply the overlays to the `pkgs` instance, used by `flake-parts`
21 lines
497 B
Nix
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
|
|
];
|
|
}
|