This commit is contained in:
Schrottkatze 2023-05-22 19:02:49 +02:00
parent 928f970d55
commit ad663f501e
3 changed files with 25 additions and 1 deletions

11
modules/vault.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
services.vault = {
enable = true;
package = pkgs.vault-bin;
storageBackend = "file";
extraConfig = ''
ui = true
'';
};
}