summaryrefslogtreecommitdiffstats
path: root/shared/1systems/test-minimal-deploy.nix
blob: ddd96f6b5f2817a4061d6915dea8f00a774e7e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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";
  };
}