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