azure-image: provide configuration.nix which allows nixos-rebuild to build a working generation and add helpful comments

This commit is contained in:
Evgeny Egorochkin 2016-03-03 03:58:51 +02:00
parent ba7b5ad530
commit 18d43d74f6
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ config, pkgs, 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/azure-common.nix" ];
}