reo101
8feb5245ea
Cannot `agenix rekey` / `deploy` `agenix rekey` rekeys separate keys successfully but canot build the derivation that contains them
21 lines
483 B
Nix
21 lines
483 B
Nix
# Shell for bootstrapping flake-enabled nix and other tooling
|
|
{ pkgs
|
|
, inputs
|
|
, outputs
|
|
, ...
|
|
}: pkgs.mkShell {
|
|
NIX_CONFIG = ''
|
|
extra-experimental-features = nix-command flakes repl-flake
|
|
'';
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
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
|
|
];
|
|
}
|