@cryptotaxi247 / infra / commits / 71c443b1

* Config of drdoctor, a NixOS test machine.

svn path=/configurations/trunk/tud/; revision=25816

Eelco Dolstra committed Feb 8, 2011 at 15:08 UTC 71c443b1f64f1e735ecbabd4dd768c8cc5d3bacf
1 file changed +20
drdoctor.nix new
+20
@@ -0,0 +1,20 @@
1 +# NixOS test machine.
2 +
3 +{ config, pkgs, modulesPath, ... }:
4 +
5 +{
6 + require = [ "${modulesPath}/virtualisation/xen-domU.nix" ];
7 +
8 + networking.hostName = "";
9 +
10 + fileSystems =
11 + [ { mountPoint = "/";
12 + label = "nixos";
13 + }
14 + { mountPoint = "/boot";
15 + label = "boot";
16 + }
17 + ];
18 +
19 + services.openssh.enable = true;
20 +}