homelab/modules/common/default.nix
Lzebulon af7a39b2f9
All checks were successful
/ check (push) Successful in 21s
fix: remove subdomain v2
2025-11-22 18:58:01 +01:00

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
];
}