forked from mirrors_public/oddlama_nix-config
14 lines
383 B
Nix
14 lines
383 B
Nix
{ inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
apps.setupHetznerStorageBoxes =
|
|
import (inputs.nixos-extra-modules + "/apps/setup-hetzner-storage-boxes.nix")
|
|
{
|
|
inherit pkgs;
|
|
nixosConfigurations = inputs.self.nodes;
|
|
decryptIdentity = builtins.head inputs.self.secretsConfig.masterIdentities;
|
|
};
|
|
};
|
|
}
|