Used agenix to manage secrets, 4 services up, ssh

This commit is contained in:
2025-08-08 17:00:47 -04:00
parent ac6c3688ef
commit 911f3589a2
20 changed files with 369 additions and 56 deletions

17
shells/nix_dev.nix Normal file
View File

@@ -0,0 +1,17 @@
{ pkgs, system, agenix }:
pkgs.mkShell {
packages = [
pkgs.nixos-rebuild
pkgs.git
pkgs.openssh
pkgs.age
pkgs.nh
agenix.packages.${system}.default
];
shellHook = ''
echo "Welcome to Gortium Infra DevShell"
echo "Use: nixos-rebuild switch --flake .#lazyworkhorse --target-host root@lazyworkhorse"
'';
}