mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
17457297cb
I.e., modules that use "require = [options]". Nowadays that should be written as { options = { ... }; config = { ... }; }; Also, use "imports" instead of "require" in places where we actually import another module.
5 lines
105 B
Nix
5 lines
105 B
Nix
{ config, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ "${modulesPath}/virtualisation/nova-image.nix" ];
|
|
}
|