23 lines
284 B
Nix
23 lines
284 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./monitoring.nix
|
|
./users.nix
|
|
];
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.htop.enable = true;
|
|
|
|
networking.domain = "bytestall.info";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
dig
|
|
git
|
|
powertop
|
|
];
|
|
|
|
}
|