mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-04 18:19:40 +01:00
15 lines
285 B
Nix
15 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;
|
|
};
|
|
}
|