vault: add minimal vault config
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

This commit is contained in:
2026-02-01 20:27:02 +01:00
parent 6d64e53586
commit a2c798bc30
2 changed files with 11 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
../../system
../../common/vm
../../services/vault
];
nixpkgs.config.allowUnfree = true;
@@ -59,3 +60,4 @@
system.stateVersion = "25.11"; # Did you read the comment?
}

View File

@@ -0,0 +1,8 @@
{ ... }:
{
services.vault = {
enable = true;
storageBackend = "file";
};
}