mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-30 18:14:20 -05:00
11 lines
283 B
Nix
11 lines
283 B
Nix
{ inputs, pkgs, lib, config, ...}: {
|
|
|
|
options.vault.enable = lib.mkEnableOption "enables hashicorp vault services";
|
|
|
|
config = {
|
|
services.vault = lib.mkIf config.vault.enable {
|
|
enable = true;
|
|
address = "localhost:8200";
|
|
};
|
|
};
|
|
}
|