nixbsd-config/system/pearbutter/default.nix

33 lines
527 B
Nix

{ pkgs, ... }:
{
imports = [ ./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.systemPackages = with pkgs; [
gitMinimal
htop
nix-top
tmux
unzip
vim
zip
];
}