summaryrefslogtreecommitdiffstats
path: root/shared/1systems/test-minimal-deploy/config.nix
blob: eab703671aca279e6ffb050b28e72c126b23720c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, lib, ... }:
{
  imports = [
    <stockholm/shared>
  ];
  krebs = {
    enable = true;
    build.user = config.krebs.users.shared;
    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";
  };
}