8 lines
154 B
Nix
8 lines
154 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
garage = lib.mkIf config.simulacrum {
|
|
keys.testkey = {};
|
|
buckets.testbucket.allow.testKey = [ "read" "write" ];
|
|
};
|
|
}
|