37 lines
607 B
Nix
37 lines
607 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.variables.EDITOR = "nvim";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gitMinimal
|
|
htop
|
|
hyfetch
|
|
neovim
|
|
nix-output-monitor
|
|
nix-top
|
|
tmux
|
|
unzip
|
|
zip
|
|
];
|
|
}
|