Add ACME cert-store

This commit is contained in:
Vili Sinervä 2025-01-20 18:28:16 +02:00
parent e97e64325d
commit 956284a8bf
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
4 changed files with 45 additions and 53 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
networking.hostName = "cert-store";
imports = [
../base.nix
../services/acme-cert-store.nix
];
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
#Prevent user from being locked out of the system before switching to proper config
users.mutableUsers = pkgs.lib.mkForce true;
}