* Move.
svn path=/configurations/trunk/tud/; revision=27190
Eelco Dolstra committed
May 8, 2011 at 21:45 UTC
2934dc41b0dc6cea15fcebed172d5b1cfade2483
1 file changed
-24
cloud/cloud-vm.nix
deleted
-24
@@ -1,24 +0,0 @@
1
-{ config, pkgs, ... }:
2
-
3
-with pkgs.lib;
4
-
5
-{
6
- boot.loader.grub.version = 2;
7
- boot.loader.grub.device = "/dev/vda";
8
- boot.initrd.kernelModules = [ "virtio_blk" "virtio_pci" ];
9
-
10
- fileSystems =
11
- [ { mountPoint = "/";
12
- label = "nixos";
13
- }
14
- ];
15
-
16
- swapDevices = [ { label = "swap"; } ];
17
-
18
- networking.hostName = mkOverride 950 "";
19
- networking.firewall.enable = mkOverride 950 true;
20
-
21
- services.openssh.enable = true;
22
-
23
- services.mingetty.ttys = [ "hvc0" "tty1" "tty2" ];
24
-}