16 lines
361 B
Nix
16 lines
361 B
Nix
|
{ 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;
|
||
|
}
|