summaryrefslogtreecommitdiffstats
path: root/shared/1systems
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-12-30 14:47:40 +0100
committermakefu <github@syntax-fehler.de>2015-12-30 14:52:11 +0100
commitca9e1700ef0deac0b71d4c3e2a6d1ee0a0ccbc42 (patch)
tree6e290e29375e4bd5730ab83109d2a88971ab8c8b /shared/1systems
parentf7894c29dbfb8404aeb9f4d387942fd638434a22 (diff)
s 1 minimal-deploy: init test
Diffstat (limited to 'shared/1systems')
-rw-r--r--shared/1systems/test-minimal-deploy.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/shared/1systems/test-minimal-deploy.nix b/shared/1systems/test-minimal-deploy.nix
new file mode 100644
index 00000000..ddd96f6b
--- /dev/null
+++ b/shared/1systems/test-minimal-deploy.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, lib, ... }:
+{
+ krebs = {
+ enable = true;
+ build.user = config.krebs.users.shared;
+ build.host = config.krebs.hosts.test-all-krebs-modules;
+ };
+ # just get the system running
+ boot.loader.grub.devices = ["/dev/sda"];
+ fileSystems."/" = {
+ device = "/dev/lol";
+ };
+}