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