1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
nixos-hardware/tests/eval-test.nix
Yegor Timoshenko b63e0eb372
Revert "tests: move to _tests"
This reverts commit 4d498aff1a.
2017-12-24 22:21:53 +00:00

16 lines
285 B
Nix

{
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;
};
}