2024-03-04 03:29:47 +00:00
|
|
|
{ pkgs, ... }:
|
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;
|
|
|
|
|
2024-03-04 03:29:47 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
gitMinimal
|
|
|
|
htop
|
|
|
|
nix-top
|
|
|
|
tmux
|
|
|
|
unzip
|
|
|
|
vim
|
|
|
|
zip
|
|
|
|
];
|
|
|
|
|
2024-03-04 01:30:20 +00:00
|
|
|
fileSystems."/" = {
|
2024-03-04 03:29:47 +00:00
|
|
|
device = "/dev/gpt/pearbutter-root";
|
2024-03-04 01:30:20 +00:00
|
|
|
fsType = "ufs";
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
2024-03-04 03:29:47 +00:00
|
|
|
device = "/dev/gpt/pearbutter-esp";
|
2024-03-04 01:30:20 +00:00
|
|
|
fsType = "msdosfs";
|
|
|
|
};
|
|
|
|
}
|