mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03: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.
6 lines
107 B
Nix
6 lines
107 B
Nix
{ config, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ "${modulesPath}/virtualisation/amazon-image.nix" ];
|
|
}
|