mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
362d1d6218
Add image configuration for Oracle Cloud Infrastructure and scripts to build and upload the image as a Custom Image.
12 lines
403 B
Nix
12 lines
403 B
Nix
{ modulesPath, ... }:
|
|
|
|
{
|
|
# To build the configuration or use nix-env, you need to run
|
|
# either nixos-rebuild --upgrade or nix-channel --update
|
|
# to fetch the nixos channel.
|
|
|
|
# This configures everything but bootstrap services,
|
|
# which only need to be run once and have already finished
|
|
# if you are able to see this comment.
|
|
imports = [ "${modulesPath}/virtualisation/oci-common.nix" ];
|
|
}
|