manatee: Add host manatee

This commit is contained in:
Alexander Heldt
2025-05-02 10:56:22 +02:00
parent c6d4393f95
commit b3a15d7ff9
12 changed files with 477 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ inputs, pkgs, ... }:
{
imports = [ inputs.agenix.nixosModules.default ];
config = {
age = {
identityPaths = [ "/etc/ssh/manatee" ];
};
environment.systemPackages = [
inputs.agenix.packages."${pkgs.system}".default
];
};
}