nixbsd-config/system/pearbutter/default.nix
2024-03-11 18:38:30 +00:00

50 lines
760 B
Nix

{ pkgs, ... }:
{
imports = [
../../sets/attic.nix
./boot-config.nix
];
users.users.artemis = {
isNormalUser = true;
description = "Artemis Tosini";
extraGroups = [ "wheel" ];
initialPassword = "toor";
};
services.sshd.enable = true;
boot.loader.stand.enable = true;
nix.settings = {
trusted-users = [ "@wheel" ];
experimental-features = [
"nix-command"
"flakes"
];
};
environment.variables.EDITOR = "nvim";
environment.systemPackages = with pkgs; [
file
freebsd.truss
gitMinimal
htop
hyfetch
jq
mosh
mtr
neovim
nix-output-monitor
nix-top
patchelf
pciutils
python3Packages.ipython
tmux
tree
unzip
xxd
zip
];
}