nixbsd-config/system/pearbutter/default.nix

28 lines
553 B
Nix
Raw Normal View History

2024-03-04 01:30:20 +00:00
{ ... }:
{
nixpkgs.hostPlatform = "x86_64-freebsd";
nixpkgs.config.freebsdBranch = "releng/14.0";
networking.hostName = "pearbutter";
users.users.artemis = {
isNormalUser = true;
description = "Artemis Tosini";
extraGroups = [ "wheel" ];
2024-03-04 01:50:31 +00:00
initialPassword = "toor";
2024-03-04 01:30:20 +00:00
};
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";
};
}