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

14 lines
323 B
Nix
Raw Normal View History

2015-12-30 13:47:40 +00:00
{ config, pkgs, lib, ... }:
{
krebs = {
enable = true;
build.user = config.krebs.users.shared;
build.host = config.krebs.hosts.test-all-krebs-modules;
};
2016-01-14 16:30:02 +00:00
# just get the system to eval in nixos without errors
2015-12-30 13:47:40 +00:00
boot.loader.grub.devices = ["/dev/sda"];
fileSystems."/" = {
device = "/dev/lol";
};
}