nixos-conf/machine-confs/cert-store.nix

16 lines
360 B
Nix
Raw Normal View History

2025-01-20 18:28:16 +02:00
{ pkgs, ... }:
{
networking.hostName = "cert-store";
imports = [
../base.nix
2025-05-29 02:12:20 +03:00
../servers/acme-cert-store.nix
2025-01-20 18:28:16 +02:00
];
#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;
}