snowflake/hosts/arashi/default.nix
notohh 34cc34a567
Some checks failed
/ check (push) Failing after 1m3s
arashi: init prometheus exporters
2023-10-17 02:45:29 -04:00

32 lines
617 B
Nix

{...}: {
imports = [
./hardware-configuration.nix
./services
../../modules
../../modules/prometheus/exporters/redis.nix
../../modules/prometheus/exporters/postgres.nix
];
boot.loader = {
grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
};
networking = {
hostName = "arashi";
};
services.xserver = {
layout = "us";
xkbVariant = "";
};
users.users.notoh.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKWRbIwwHuyEOLhA9dKTf4TgFqtPR5MNcJorKm731S7G arashi''
];
}