reo101
4f5af36bc6
Add separate module for `wireguard` Rekey `jeeves_password` (use all `users`' keys) Add secrets related to Wireguard: server public/private, cheetah public Add a `.gitignore` for the private `limonka_age` key
20 lines
420 B
Nix
20 lines
420 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
|
|
deploy-rs
|
|
# inputs.agenix.packages.${pkgs.system}.agenix
|
|
inputs.ragenix.packages.${pkgs.system}.ragenix
|
|
wireguard-tools
|
|
rage
|
|
];
|
|
}
|