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

9 lines
163 B
Nix
Raw Normal View History

2023-09-17 21:04:22 +02:00
{ lib, modulesPath, ... }:
2023-09-16 20:05:33 +02:00
{
imports = [
2023-09-17 21:04:22 +02:00
"${modulesPath}/virtualisation/openstack-config.nix"
2023-09-16 20:05:33 +02:00
];
users.users.root.initialPassword = lib.mkForce null;
}