stockholm/shared/1systems/test-minimal-deploy.nix

17 lines
351 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
../.
];
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";
};
}