svn path=/configurations/trunk/tud/; revision=27034
svn path=/configurations/trunk/tud/; revision=27034
Eelco Dolstra committed
Apr 28, 2011 at 14:57 UTC
111a3c77201d245e3c38ebb87e872cd52b68162d
1 file changed
+4
-2
cloud/cloud-vm.nix
+4
-2
@@ -1,5 +1,7 @@
1
{ config, pkgs, ... }:
2
3
+with pkgs.lib;
4
+
5
{
6
boot.loader.grub.version = 2;
7
boot.loader.grub.device = "/dev/vda";
@@ -13,8 +15,8 @@
15
16
swapDevices = [ { label = "swap"; } ];
17
16
- networking.hostName = "";
17
- networking.firewall.enable = true;
18
+ networking.hostName = mkOverride 950 "";
19
+ networking.firewall.enable = mkOverride 950 true;
20
21
services.openssh.enable = true;
22