... gpt not gptid
This commit is contained in:
parent
b557dd11a5
commit
ce6ae659f5
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.hostPlatform = "x86_64-freebsd";
|
nixpkgs.hostPlatform = "x86_64-freebsd";
|
||||||
nixpkgs.config.freebsdBranch = "releng/14.0";
|
nixpkgs.config.freebsdBranch = "releng/14.0";
|
||||||
|
@ -15,13 +15,23 @@
|
||||||
services.sshd.enable = true;
|
services.sshd.enable = true;
|
||||||
boot.loader.stand.enable = true;
|
boot.loader.stand.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gitMinimal
|
||||||
|
htop
|
||||||
|
nix-top
|
||||||
|
tmux
|
||||||
|
unzip
|
||||||
|
vim
|
||||||
|
zip
|
||||||
|
];
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/gptid/pearbutter-root";
|
device = "/dev/gpt/pearbutter-root";
|
||||||
fsType = "ufs";
|
fsType = "ufs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/gptid/pearbutter-esp";
|
device = "/dev/gpt/pearbutter-esp";
|
||||||
fsType = "msdosfs";
|
fsType = "msdosfs";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue