homelab/modules/common/default.nix
Lzebulon 6d99123d55
All checks were successful
/ check (push) Successful in 32s
format && add node monitoring
2025-11-03 23:28:25 +01:00

23 lines
287 B
Nix

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