nixbsd-config/system/pearbutter/boot-config.nix

18 lines
328 B
Nix
Raw Normal View History

2024-03-04 04:03:05 +00:00
{ ... }:
2024-03-04 03:34:09 +00:00
{
nixpkgs.hostPlatform = "x86_64-freebsd";
nixpkgs.config.freebsdBranch = "releng/14.0";
networking.hostName = "pearbutter";
fileSystems."/" = {
device = "/dev/gpt/pearbutter-root";
fsType = "ufs";
};
fileSystems."/boot" = {
2024-03-04 04:03:05 +00:00
device = "/dev/gpt/pearbutter-efi";
2024-03-04 03:34:09 +00:00
fsType = "msdosfs";
};
}