You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
infra/machines/status.domain.com/configuration.nix

32 lines
531 B

{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "status";
networking.domain = "domain.com";
time.timeZone = "UTC";
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;
};
};
environment.systemPackages = with pkgs; [
curl
tmux
wget
bash
];
system.stateVersion = "26.05";
}