28 lines
553 B
Nix
28 lines
553 B
Nix
{ ... }:
|
|
{
|
|
nixpkgs.hostPlatform = "x86_64-freebsd";
|
|
nixpkgs.config.freebsdBranch = "releng/14.0";
|
|
|
|
networking.hostName = "pearbutter";
|
|
|
|
users.users.artemis = {
|
|
isNormalUser = true;
|
|
description = "Artemis Tosini";
|
|
extraGroups = [ "wheel" ];
|
|
initialPassword = "toor";
|
|
};
|
|
|
|
services.sshd.enable = true;
|
|
boot.loader.stand.enable = true;
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/ufs/pearbutter-root";
|
|
fsType = "ufs";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/msdosfs/pearbutter-esp";
|
|
fsType = "msdosfs";
|
|
};
|
|
}
|