diff --git a/hosts/vault01/configuration.nix b/hosts/vault01/configuration.nix index 9548141..a743fe7 100644 --- a/hosts/vault01/configuration.nix +++ b/hosts/vault01/configuration.nix @@ -11,6 +11,7 @@ ../../system ../../common/vm + ../../services/vault ]; nixpkgs.config.allowUnfree = true; @@ -58,4 +59,5 @@ networking.firewall.enable = false; system.stateVersion = "25.11"; # Did you read the comment? -} \ No newline at end of file +} + diff --git a/services/vault/default.nix b/services/vault/default.nix new file mode 100644 index 0000000..41b2ab6 --- /dev/null +++ b/services/vault/default.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + services.vault = { + enable = true; + + storageBackend = "file"; + }; +}