nixbsd-config/system/pearbutter/default.nix

33 lines
527 B
Nix
Raw Normal View History

2024-03-04 03:29:47 +00:00
{ pkgs, ... }:
2024-03-04 01:30:20 +00:00
{
2024-03-04 03:34:09 +00:00
imports = [ ./boot-config.nix ];
2024-03-04 01:30:20 +00:00
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:34:09 +00:00
nix.settings = {
trusted-users = [ "@wheel" ];
experimental-features = [
"nix-command"
"flakes"
];
};
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
}