mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
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;
|
|
};
|
|
};
|
|
}
|