diff options
author | lassulus <lass@aidsballs.de> | 2015-12-30 17:16:05 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-12-30 17:16:05 +0100 |
commit | 9b890750e24f43182ebf1732871a60d9e0c74c89 (patch) | |
tree | 4b3edf06c425b74d6209a3ea08d6ef1b48c2f15a /shared/1systems | |
parent | f16742895c26b0f3df71ca8503afc5f4cb97a9ae (diff) | |
parent | c625c7d422d5bfe6b4cdbafc6dd9eb0253673776 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'shared/1systems')
-rw-r--r-- | shared/1systems/test-minimal-deploy.nix | 13 |
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 000000000..ddd96f6b5 --- /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"; + }; +} |