stockholm/krebs/1systems/test-minimal-deploy/config.nix

18 lines
394 B
Nix
Raw Normal View History

2015-12-30 14:47:40 +01:00
{ config, pkgs, lib, ... }:
{
2016-02-15 16:27:11 +01:00
imports = [
2017-07-14 00:17:58 +02:00
<stockholm/krebs>
<stockholm/krebs/2configs>
2016-02-15 16:27:11 +01:00
];
2015-12-30 14:47:40 +01:00
krebs = {
enable = true;
2017-07-14 00:17:58 +02:00
build.user = config.krebs.users.krebs;
2015-12-30 14:47:40 +01:00
build.host = config.krebs.hosts.test-all-krebs-modules;
};
2016-01-14 17:30:02 +01:00
# just get the system to eval in nixos without errors
2015-12-30 14:47:40 +01:00
boot.loader.grub.devices = ["/dev/sda"];
fileSystems."/" = {
device = "/dev/lol";
};
}