summaryrefslogtreecommitdiffstats
path: root/krebs/1systems/test-minimal-deploy/config.nix
blob: 9974b4f7c3fe89a768e269a02b9b87cf6d7bad4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, lib, ... }:
{
  imports = [
    <stockholm/krebs>
    <stockholm/krebs/2configs>
  ];
  krebs = {
    enable = true;
    build.user = config.krebs.users.krebs;
    build.host = config.krebs.hosts.test-all-krebs-modules;
  };
  # just get the system to eval in nixos without errors
  boot.loader.grub.devices = ["/dev/sda"];
  fileSystems."/" = {
    device = "/dev/lol";
  };
}