... gpt not gptid

This commit is contained in:
Artemis Tosini 2024-03-04 03:29:47 +00:00
parent b557dd11a5
commit ce6ae659f5
Signed by: artemist
GPG key ID: EE5227935FE3FF18

View file

@ -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";
}; };
} }