1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-03 03:23:35 +02:00
nixos-hardware/tests/eval-test.nix

16 lines
285 B
Nix
Raw Permalink Normal View History

2017-12-24 12:44:48 +01:00
{
imports = [ <nixos-hardware-profile> ];
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
fsType = "btrfs";
};
nixpkgs.config = {
allowBroken = true;
allowUnfree = true;
};
2017-12-24 12:44:48 +01:00
}