nix-infra/config/environments/openstack-vm/default.nix

9 lines
163 B
Nix
Raw Normal View History

2024-11-20 05:46:40 +01:00
{ lib, modulesPath, ... }:
2024-11-20 05:46:40 +01:00
{
imports = [
2024-11-20 05:46:40 +01:00
"${modulesPath}/virtualisation/openstack-config.nix"
2024-11-20 05:46:40 +01:00
];
users.users.root.initialPassword = lib.mkForce null;
}